From: Stefan Monnier Date: Tue, 8 Sep 2009 19:42:21 +0000 (+0000) Subject: (with-silent-modifications): New macro. X-Git-Tag: emacs-pretest-23.1.90~1451 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=83a5aac556c598c1e925daad9583e79c4505824b;p=emacs.git (with-silent-modifications): New macro. --- diff --git a/etc/NEWS b/etc/NEWS index ffab85e0650..fa7f01d1bc4 100644 --- a/etc/NEWS +++ b/etc/NEWS @@ -200,6 +200,8 @@ functions and variables. * Lisp changes in Emacs 23.2 +** New macro with-silent-modifications to tweak text properties without +affecting the buffer's modification state. ** All the default-FOO variables that hold the default value of the FOO variable, are now declared obsolete. diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 9742ad3bfb6..53e0cd9825b 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2009-09-08 Stefan Monnier + + * subr.el (with-silent-modifications): New macro. + 2009-09-07 Juanma Barranquero * files.el (top-level): Require `cl' when compiling. diff --git a/lisp/subr.el b/lisp/subr.el index 43bce3055b6..23bb63dc85d 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -2749,6 +2749,29 @@ See also `with-temp-file' and `with-output-to-string'." (and (buffer-name ,temp-buffer) (kill-buffer ,temp-buffer))))))) +(defmacro with-silent-modifications (&rest body) + "Execute BODY, pretending it does not modifies the buffer. +If BODY performs real modifications to the buffer's text, other +than cosmetic ones, undo data may become corrupted. +Typically used around modifications of text-properties which do not really +affect the buffer's content." + (declare (debug t) (indent 0)) + (let ((modified (make-symbol "modified"))) + `(let* ((,modified (buffer-modified-p)) + (buffer-undo-list t) + (inhibit-read-only t) + (inhibit-modification-hooks t) + deactivate-mark + ;; Avoid setting and removing file locks and checking + ;; buffer's uptodate-ness w.r.t the underlying file. + buffer-file-name + buffer-file-truename) + (unwind-protect + (progn + ,@body) + (unless ,modified + (restore-buffer-modified-p nil)))))) + (defmacro with-output-to-string (&rest body) "Execute BODY, return the text it sent to `standard-output', as a string." (declare (indent 0) (debug t))