]> git.eshelyaron.com Git - emacs.git/commitdiff
(save-buffer-state): Use inhibit-modification-hooks
authorStefan Monnier <monnier@iro.umontreal.ca>
Thu, 1 Mar 2001 17:49:04 +0000 (17:49 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Thu, 1 Mar 2001 17:49:04 +0000 (17:49 +0000)
rather than (before|after)-change-functions.

lisp/ChangeLog
lisp/font-lock.el

index a65463a8c1efbf692ccf781b1fcf69382c99d815..a610fd423da29b5fcb2c92fe9cb70a2ac7034c47 100644 (file)
@@ -1,3 +1,8 @@
+2001-03-01  Stefan Monnier  <monnier@cs.yale.edu>
+
+       * font-lock.el (save-buffer-state): Use inhibit-modification-hooks
+       rather than (before|after)-change-functions.
+
 2001-03-01  Gerd Moellmann  <gerd@gnu.org>
 
        * ediff-util.el (ediff-scroll-horizontally): Arrange for
@@ -70,7 +75,7 @@
 
        * international/fontset.el (x-complement-fontset-spec): In the
        case that we use ASCII font for the other charsets, use only
-       family and regisry part of it.
+       family and registry part of it.
 
 2001-02-23  Eli Zaretskii  <eliz@is.elta.co.il>
 
 
        * battery.el (battery-status-function): Fix doc, :type.
 
-       * calendar/timeclock.el (timeclock-get-workday-function): Fix
-       :type.
+       * calendar/timeclock.el (timeclock-get-workday-function): Fix :type.
 
 2001-02-15  Gerd Moellmann  <gerd@gnu.org>
 
        * emacs-lisp/re-builder.el (reb-mode): Quote the hook name.  From
        Juanma Barranquero.
 
-       * emacs-lisp/authors.el (authors): Expand `root' before running
-       find.
+       * emacs-lisp/authors.el (authors): Expand `root' before running find.
 
 2001-02-09  Kenichi Handa  <handa@etl.go.jp>
 
index 30605b576361603052056f8c43c23998e55a3ebe..f46317d45d3d2a1cdb694d6eb1908267d3ac4c6b 100644 (file)
@@ -672,7 +672,7 @@ Major/minor modes can set this variable if they know which option applies.")
     `(let* ,(append varlist
                    '((modified (buffer-modified-p)) (buffer-undo-list t)
                      (inhibit-read-only t) (inhibit-point-motion-hooks t)
-                     before-change-functions after-change-functions
+                     (inhibit-modification-hooks t)
                      deactivate-mark buffer-file-name buffer-file-truename))
        ,@body
        (when (and (not modified) (buffer-modified-p))