From: Eli Zaretskii Date: Sat, 22 Apr 2023 10:35:36 +0000 (+0300) Subject: Fix exiting Emacs after saving a tutorial X-Git-Tag: emacs-29.0.91~113 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=dec2ac0c657;p=emacs.git Fix exiting Emacs after saving a tutorial * lisp/tutorial.el (tutorial--starting-point): Make it permanent-local, so that saving the tutorial to some file doesn't kill this buffer-local variable. Otherwise, trying to exit Emacs after saving the tutorial will signal an error, because 'tutorial--starting-point' is void. (Bug#37326) --- diff --git a/lisp/tutorial.el b/lisp/tutorial.el index 0afe565c80b..eb494be8d4d 100644 --- a/lisp/tutorial.el +++ b/lisp/tutorial.el @@ -650,6 +650,7 @@ with some explanatory links." (delete-region prop-start prop-end)))))) (defvar tutorial--starting-point) +(put 'tutorial--starting-point 'permanent-local t) (defun tutorial--save-on-kill () "Query the user about saving the tutorial when killing Emacs." (when (buffer-live-p tutorial--buffer)