aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1997-08-09 18:37:59 +0000
committerRichard M. Stallman <[email protected]>1997-08-09 18:37:59 +0000
commit253011b3a73df0f227528a766a2618ccea860284 (patch)
tree5f1600ff89eda5ac290aeb769ac7503b91535dc6 /lisp
parent63add9c9fe525ea61e1dbf26592790b4c34b04ae (diff)
(idl-mode-hook): New variable.
(c-initialization-hook): New variable.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/progmodes/cc-vars.el14
1 files changed, 13 insertions, 1 deletions
diff --git a/lisp/progmodes/cc-vars.el b/lisp/progmodes/cc-vars.el
index dfdb2a5594..bbf2268116 100644
--- a/lisp/progmodes/cc-vars.el
+++ b/lisp/progmodes/cc-vars.el
@@ -7,7 +7,7 @@
;; 1985 Richard M. Stallman
;; Maintainer: [email protected]
;; 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)
+
;; Non-customizable variables, still part of the interface to CC Mode