]> git.eshelyaron.com Git - emacs.git/commitdiff
(idl-mode-hook): New variable.
authorRichard M. Stallman <rms@gnu.org>
Sat, 9 Aug 1997 18:37:59 +0000 (18:37 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 9 Aug 1997 18:37:59 +0000 (18:37 +0000)
(c-initialization-hook): New variable.

lisp/progmodes/cc-vars.el

index dfdb2a5594b842dd3d4a094be55ff7241dc53a3b..bbf2268116045addd171ac9398e5f2d72c7f44d5 100644 (file)
@@ -7,7 +7,7 @@
 ;;             1985 Richard M. Stallman
 ;; Maintainer: cc-mode-help@python.org
 ;; Created:    22-Apr-1997 (split from cc-mode.el)
-;; Version:    5.13
+;; Version:    5.14
 ;; Keywords:   c languages oop
 
 ;; This file is part of GNU Emacs.
@@ -353,11 +353,23 @@ The list of variables to buffer localize are:
   :type 'hook
   :group 'c)
 
+(defcustom idl-mode-hook nil
+  "*Hook called by `idl-mode'."
+  :type 'hook
+  :group 'c)
+
 (defcustom c-mode-common-hook nil
   "*Hook called by all CC Mode modes for common initializations."
   :type '(hook :format "%{CC Mode Common Hook%}:\n%v")
   :group 'c)
 
+(defcustom c-initialization-hook nil
+  "*Hook called when the CC Mode package gets initialized.
+This hook is only run once per Emacs session and can be used as a
+`load-hook' or in place of using `eval-after-load'."
+  :type 'hook
+  :group 'c)
+
 
 \f
 ;; Non-customizable variables, still part of the interface to CC Mode