1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-21 06:55:39 +00:00

; Fix a thinko in sieve-manage.el

* lisp/net/sieve-manage.el (sieve-manage--append-to-log): Fix
thinko.  (Bug#54154)
This commit is contained in:
Eli Zaretskii 2024-09-29 15:42:21 +03:00
parent 7abecbcd63
commit 36ff7138fe

View File

@ -178,7 +178,8 @@ If it is nil, logging is disabled."
(with-current-buffer
(get-buffer-create sieve-manage-log)
(set-buffer-multibyte nil)
(buffer-disable-undo)))
(buffer-disable-undo)
(current-buffer)))
(goto-char (point-max))
(apply #'insert args))))