comparison lisp/cc-mode/cc-vars.el @ 177:6075d714658b r20-3b15

Import from CVS: tag r20-3b15
author cvs
date Mon, 13 Aug 2007 09:51:16 +0200
parents 2d532a89d707
children bfd6434d15b3
comparison
equal deleted inserted replaced
176:6866abce6aaf 177:6075d714658b
5 ;; Authors: 1992-1997 Barry A. Warsaw 5 ;; Authors: 1992-1997 Barry A. Warsaw
6 ;; 1987 Dave Detlefs and Stewart Clamen 6 ;; 1987 Dave Detlefs and Stewart Clamen
7 ;; 1985 Richard M. Stallman 7 ;; 1985 Richard M. Stallman
8 ;; Maintainer: cc-mode-help@python.org 8 ;; Maintainer: cc-mode-help@python.org
9 ;; Created: 22-Apr-1997 (split from cc-mode.el) 9 ;; Created: 22-Apr-1997 (split from cc-mode.el)
10 ;; Version: 5.13 10 ;; Version: 5.14
11 ;; Keywords: c languages oop 11 ;; Keywords: c languages oop
12 12
13 ;; This file is part of GNU Emacs. 13 ;; This file is part of GNU Emacs.
14 14
15 ;; GNU Emacs is free software; you can redistribute it and/or modify 15 ;; GNU Emacs is free software; you can redistribute it and/or modify
351 (defcustom java-mode-hook nil 351 (defcustom java-mode-hook nil
352 "*Hook called by `java-mode'." 352 "*Hook called by `java-mode'."
353 :type 'hook 353 :type 'hook
354 :group 'c) 354 :group 'c)
355 355
356 (defcustom idl-mode-hook nil
357 "*Hook called by `idl-mode'."
358 :type 'hook
359 :group 'c)
360
356 (defcustom c-mode-common-hook nil 361 (defcustom c-mode-common-hook nil
357 "*Hook called by all CC Mode modes for common initializations." 362 "*Hook called by all CC Mode modes for common initializations."
358 :type '(hook :format "%{CC Mode Common Hook%}:\n%v") 363 :type '(hook :format "%{CC Mode Common Hook%}:\n%v")
364 :group 'c)
365
366 (defcustom c-initialization-hook nil
367 "*Hook called when the CC Mode package gets initialized.
368 This hook is only run once per Emacs session and can be used as a
369 `load-hook' or in place of using `eval-after-load'."
370 :type 'hook
359 :group 'c) 371 :group 'c)
360 372
361 373
362 374
363 ;; Non-customizable variables, still part of the interface to CC Mode 375 ;; Non-customizable variables, still part of the interface to CC Mode