diff options
author | Dave Love <fx@gnu.org> | 2001-02-09 15:37:42 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 2001-02-09 15:37:42 +0000 |
commit | 45974ac693cf8da2fb17ef841a332c1f0b2de3ff (patch) | |
tree | c31404f961f1ce155cd30dd3be046582891c0f6a /lisp/emacs-lisp | |
parent | d2f288c69510feaac53886d18390a7334fd82a14 (diff) | |
download | emacs-45974ac693cf8da2fb17ef841a332c1f0b2de3ff.tar.gz |
(reb-mode): Quote the hook name. From
Juanma Barranquero.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/re-builder.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/re-builder.el b/lisp/emacs-lisp/re-builder.el index 02b3658ac69..e3667cbc78e 100644 --- a/lisp/emacs-lisp/re-builder.el +++ b/lisp/emacs-lisp/re-builder.el @@ -235,7 +235,7 @@ Except for Lisp syntax this is the same as `reb-regexp'.") mode-name "RE Builder") (use-local-map reb-mode-map) (reb-mode-common) - (run-hooks reb-mode-hook)) + (run-hooks 'reb-mode-hook)) (define-derived-mode reb-lisp-mode emacs-lisp-mode "RE Builder Lisp" |