diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2007-07-23 21:49:42 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2007-07-23 21:49:42 +0000 |
commit | ae59e8884655055609aafcd9bf2d405936018802 (patch) | |
tree | 94386ffc397aa5a6197d71d9c379ee6f8a172333 /lisp/ses.el | |
parent | 6145f7fdfe318bc3f13aa03c083bfcd489bd9d83 (diff) | |
download | emacs-ae59e8884655055609aafcd9bf2d405936018802.tar.gz |
(ses-cleanup): Prevent Emacs from spuriously checking if the
underlying file is uptodate.
Diffstat (limited to 'lisp/ses.el')
-rw-r--r-- | lisp/ses.el | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/lisp/ses.el b/lisp/ses.el index 4f51c803de1..c729ca4b432 100644 --- a/lisp/ses.el +++ b/lisp/ses.el @@ -1470,17 +1470,22 @@ Narrows the buffer to show only the print area. Gives it `read-only' and (overlay-put ses--curcell-overlay 'face 'underline)) (defun ses-cleanup () - "Cleanup when changing a buffer from SES mode to something else. Delete -overlay, remove special text properties." + "Cleanup when changing a buffer from SES mode to something else. +Delete overlays, remove special text properties." (widen) (let ((inhibit-read-only t) + ;; When reverting, hide the buffer name, otherwise Emacs will ask + ;; the user "the file is modified, do you really want to make + ;; modifications to this buffer", where the "modifications" refer to + ;; the irrelevant set-text-properties below. + (buffer-file-name nil) (was-modified (buffer-modified-p))) ;;Delete read-only, keymap, and intangible properties (set-text-properties (point-min) (point-max) nil) ;;Delete overlay (mapc 'delete-overlay (overlays-in (point-min) (point-max))) (unless was-modified - (set-buffer-modified-p nil)))) + (restore-buffer-modified-p nil)))) ;;;###autoload (defun ses-mode () |