diff options
author | Dave Love <fx@gnu.org> | 2000-02-02 15:10:35 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 2000-02-02 15:10:35 +0000 |
commit | 3433c43f88f851b40540dac5655122b92f55d2ef (patch) | |
tree | 3c7130d9539e4074fb0d72154adccfb90947b8a7 /lisp/emacs-lisp | |
parent | ba27ebd204f5a22fd714de32da26cf81ef419ecb (diff) | |
download | emacs-3433c43f88f851b40540dac5655122b92f55d2ef.tar.gz emacs-3433c43f88f851b40540dac5655122b92f55d2ef.tar.bz2 emacs-3433c43f88f851b40540dac5655122b92f55d2ef.zip |
Run bytecomp-load-hook.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index 6dd1260eea8..3c027167e37 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -9,7 +9,7 @@ ;;; This version incorporates changes up to version 2.10 of the ;;; Zawinski-Furuseth compiler. -(defconst byte-compile-version "$Revision: 2.60 $") +(defconst byte-compile-version "$Revision: 2.61 $") ;; This file is part of GNU Emacs. @@ -3565,4 +3565,6 @@ For example, invoke `emacs -batch -f batch-byte-recompile-directory .'." byte-compile-variable-ref)))) nil) +(run-hooks 'bytecomp-load-hook) + ;;; bytecomp.el ends here |