aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/net/zone-mode.el2
2 files changed, 3 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 0d9de36da58..d1ddd68685b 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,7 @@
12002-04-29 Richard M. Stallman <rms@gnu.org> 12002-04-29 Richard M. Stallman <rms@gnu.org>
2 2
3 * net/zone-mode.el (zone-mode): Add write-file-hooks hook locally.
4
3 * mail/emacsbug.el (report-emacs-bug-hook): Don't fail completely 5 * mail/emacsbug.el (report-emacs-bug-hook): Don't fail completely
4 if the user edits the Emacs version number in the text. 6 if the user edits the Emacs version number in the text.
5 7
diff --git a/lisp/net/zone-mode.el b/lisp/net/zone-mode.el
index 598386f23a9..bb8bacacc61 100644
--- a/lisp/net/zone-mode.el
+++ b/lisp/net/zone-mode.el
@@ -92,7 +92,7 @@ Zone-mode does two things:
92 92
93 - fontification" 93 - fontification"
94 94
95 (add-hook 'write-file-hooks 'zone-mode-update-serial-hook) 95 (add-hook 'write-file-hooks 'zone-mode-update-serial-hook nil t)
96 96
97 (if (null zone-mode-syntax-table) 97 (if (null zone-mode-syntax-table)
98 (zone-mode-load-time-setup)) ;; should have been run at load-time 98 (zone-mode-load-time-setup)) ;; should have been run at load-time