]> git.eshelyaron.com Git - emacs.git/commitdiff
Reposition call to set-buffer-modified-p in sieve-upload
authorEric Abrahamsen <eric@ericabrahamsen.net>
Sat, 2 Jan 2021 19:05:38 +0000 (11:05 -0800)
committerEric Abrahamsen <eric@ericabrahamsen.net>
Sat, 2 Jan 2021 19:05:38 +0000 (11:05 -0800)
* lisp/net/sieve.el (sieve-upload): It's meant to affect the script
buffer, not sieve-buffer, so needs to be outside the call to
with-current-buffer.

lisp/net/sieve.el

index e46f4daae20d932d2a12f552f0c6cac0d38aab21..ca100267f672f2e4fddd2c8c6ea1375db2cf2ab4 100644 (file)
@@ -360,8 +360,8 @@ Used to bracket operations which move point in the sieve-buffer."
         (if (not (sieve-manage-ok-p err))
             (message "Sieve upload failed: %s" (nth 2 err))
           (message "Sieve upload done.  Use %s to manage scripts."
-                   (substitute-command-keys "\\[sieve-manage]"))
-          (set-buffer-modified-p nil))))))
+                   (substitute-command-keys "\\[sieve-manage]"))))
+      (set-buffer-modified-p nil))))
 
 ;;;###autoload
 (defun sieve-upload-and-bury (&optional name)