diff options
| -rw-r--r-- | lisp/ChangeLog | 13 | ||||
| -rw-r--r-- | lisp/font-lock.el | 2 |
2 files changed, 9 insertions, 6 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index a65463a8c1e..a610fd423da 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2001-03-01 Stefan Monnier <monnier@cs.yale.edu> | ||
| 2 | |||
| 3 | * font-lock.el (save-buffer-state): Use inhibit-modification-hooks | ||
| 4 | rather than (before|after)-change-functions. | ||
| 5 | |||
| 1 | 2001-03-01 Gerd Moellmann <gerd@gnu.org> | 6 | 2001-03-01 Gerd Moellmann <gerd@gnu.org> |
| 2 | 7 | ||
| 3 | * ediff-util.el (ediff-scroll-horizontally): Arrange for | 8 | * ediff-util.el (ediff-scroll-horizontally): Arrange for |
| @@ -70,7 +75,7 @@ | |||
| 70 | 75 | ||
| 71 | * international/fontset.el (x-complement-fontset-spec): In the | 76 | * international/fontset.el (x-complement-fontset-spec): In the |
| 72 | case that we use ASCII font for the other charsets, use only | 77 | case that we use ASCII font for the other charsets, use only |
| 73 | family and regisry part of it. | 78 | family and registry part of it. |
| 74 | 79 | ||
| 75 | 2001-02-23 Eli Zaretskii <eliz@is.elta.co.il> | 80 | 2001-02-23 Eli Zaretskii <eliz@is.elta.co.il> |
| 76 | 81 | ||
| @@ -243,8 +248,7 @@ | |||
| 243 | 248 | ||
| 244 | * battery.el (battery-status-function): Fix doc, :type. | 249 | * battery.el (battery-status-function): Fix doc, :type. |
| 245 | 250 | ||
| 246 | * calendar/timeclock.el (timeclock-get-workday-function): Fix | 251 | * calendar/timeclock.el (timeclock-get-workday-function): Fix :type. |
| 247 | :type. | ||
| 248 | 252 | ||
| 249 | 2001-02-15 Gerd Moellmann <gerd@gnu.org> | 253 | 2001-02-15 Gerd Moellmann <gerd@gnu.org> |
| 250 | 254 | ||
| @@ -347,8 +351,7 @@ | |||
| 347 | * emacs-lisp/re-builder.el (reb-mode): Quote the hook name. From | 351 | * emacs-lisp/re-builder.el (reb-mode): Quote the hook name. From |
| 348 | Juanma Barranquero. | 352 | Juanma Barranquero. |
| 349 | 353 | ||
| 350 | * emacs-lisp/authors.el (authors): Expand `root' before running | 354 | * emacs-lisp/authors.el (authors): Expand `root' before running find. |
| 351 | find. | ||
| 352 | 355 | ||
| 353 | 2001-02-09 Kenichi Handa <handa@etl.go.jp> | 356 | 2001-02-09 Kenichi Handa <handa@etl.go.jp> |
| 354 | 357 | ||
diff --git a/lisp/font-lock.el b/lisp/font-lock.el index 30605b57636..f46317d45d3 100644 --- a/lisp/font-lock.el +++ b/lisp/font-lock.el | |||
| @@ -672,7 +672,7 @@ Major/minor modes can set this variable if they know which option applies.") | |||
| 672 | `(let* ,(append varlist | 672 | `(let* ,(append varlist |
| 673 | '((modified (buffer-modified-p)) (buffer-undo-list t) | 673 | '((modified (buffer-modified-p)) (buffer-undo-list t) |
| 674 | (inhibit-read-only t) (inhibit-point-motion-hooks t) | 674 | (inhibit-read-only t) (inhibit-point-motion-hooks t) |
| 675 | before-change-functions after-change-functions | 675 | (inhibit-modification-hooks t) |
| 676 | deactivate-mark buffer-file-name buffer-file-truename)) | 676 | deactivate-mark buffer-file-name buffer-file-truename)) |
| 677 | ,@body | 677 | ,@body |
| 678 | (when (and (not modified) (buffer-modified-p)) | 678 | (when (and (not modified) (buffer-modified-p)) |