diff options
-rw-r--r-- | lisp/ChangeLog | 4 | ||||
-rw-r--r-- | lisp/nxml/nxml-mode.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 2fa2fd692fc..b330911f801 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2008-06-16 Derek Upham <sand@blarg.net> (tiny change) + + * nxml/nxml-mode.el (nxml-mode): Use run-mode-hooks. + 2008-06-16 Juanma Barranquero <lekktu@gmail.com> * log-view.el (vc-diff-internal): Declare for compiler. diff --git a/lisp/nxml/nxml-mode.el b/lisp/nxml/nxml-mode.el index cb13d588c04..af0b3c72eda 100644 --- a/lisp/nxml/nxml-mode.el +++ b/lisp/nxml/nxml-mode.el @@ -551,7 +551,7 @@ Many aspects this mode can be customized using (rng-nxml-mode-init) (nxml-enable-unicode-char-name-sets) - (run-hooks 'nxml-mode-hook)) + (run-mode-hooks 'nxml-mode-hook)) (defun nxml-cleanup () "Clean up after nxml-mode." |