diff options
author | Dave Love <fx@gnu.org> | 2001-02-07 23:40:52 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 2001-02-07 23:40:52 +0000 |
commit | 4c1fc0f6a808e7497f1e4ee014541f230d3cdc56 (patch) | |
tree | 6c626f0161278da98bd8691a995cfee88250f667 /lisp/forms.el | |
parent | 4dfb07fd3252bf91cb18e8058341e879d2fefa5e (diff) | |
download | emacs-4c1fc0f6a808e7497f1e4ee014541f230d3cdc56.tar.gz |
(forms-mode-hooks): Fix :type.
Diffstat (limited to 'lisp/forms.el')
-rw-r--r-- | lisp/forms.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/forms.el b/lisp/forms.el index 226474c5c0c..27a9da38133 100644 --- a/lisp/forms.el +++ b/lisp/forms.el @@ -301,15 +301,15 @@ (provide 'forms) ;;; official (provide 'forms-mode) ;;; for compatibility -(defconst forms-version (substring "$Revision: 2.39 $" 11 -2) +(defconst forms-version (substring "$Revision: 2.40 $" 11 -2) "The version number of forms-mode (as string). The complete RCS id is: - $Id: forms.el,v 2.39 1999/05/31 08:34:19 eliz Exp $") + $Id: forms.el,v 2.40 1999/11/13 22:05:56 gerd Exp $") (defcustom forms-mode-hooks nil - "Hook functions to be run upon entering Forms mode." + "Hook run upon entering Forms mode." :group 'forms - :type 'function) + :type 'hook) ;;; Mandatory variables - must be set by evaluating the control file. |