help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: hijack C function, use it transparently with in-between layer


From: John Mastro
Subject: Re: hijack C function, use it transparently with in-between layer
Date: Mon, 6 Jun 2016 16:49:22 -0700

Emanuel Berg <embe8573@student.uu.se> wrote:
> I also thought it could be used in Elisp to not
> have the message buffer overpopulated. It could
> be made into yet another "code scope macro"
> like `with-current-buffer' only this time
>
>    (with-messages-inhibited

This part you can have today:

(defmacro with-messages-inhibited (&rest body)
  (declare (indent defun))
  `(let ((inhibit-message t)
         (message-log-max nil))
     ,@body))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]