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

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

Re: silence append-to-file?


From: Gregory Heytings
Subject: Re: silence append-to-file?
Date: Fri, 12 Nov 2021 13:18:42 +0000



Alternatively, is there a better function to use for this?


(defun append-to-file-quiet (start end filename)
  "Like `append-to-file', but do not log a message in *Messages*"
  (let ((message-log-max nil))
    (append-to-file start end filename)))



reply via email to

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