1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-23 07:19:15 +00:00

(View-exit-and-edit): Bind view-no-disable-on-exit to nil.

This commit is contained in:
Karl Heuer 1998-06-03 14:35:38 +00:00
parent 074c438cbb
commit 72b5cb89c3

View File

@ -582,7 +582,8 @@ corresponding OLD-WINDOW is a live window, then select OLD-WINDOW."
(defun View-exit-and-edit ()
"Exit View mode and make the current buffer editable."
(interactive)
(let ((view-old-buffer-read-only nil))
(let ((view-old-buffer-read-only nil)
(view-no-disable-on-exit nil))
(view-mode-exit)))
(defun View-leave ()