diff options
author | Richard M. Stallman <rms@gnu.org> | 1993-07-04 17:56:40 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1993-07-04 17:56:40 +0000 |
commit | e9b2008b9b3c23f4064b73b71c71023801fb6abd (patch) | |
tree | bf9d625ca57f586e79f9f5806b9db85990c0ad85 /lisp/forms.el | |
parent | a836eeaf0275f564357253b84a5e5efff1bde1ce (diff) | |
download | emacs-e9b2008b9b3c23f4064b73b71c71023801fb6abd.tar.gz |
(forms-new-record-filter): Correct default value.
(forms-modified-record-filter): Correct default value.
Diffstat (limited to 'lisp/forms.el')
-rw-r--r-- | lisp/forms.el | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lisp/forms.el b/lisp/forms.el index 559c60db07c..e6fced291a5 100644 --- a/lisp/forms.el +++ b/lisp/forms.el @@ -2,7 +2,8 @@ ;;; Copyright (C) 1991, 1993 Free Software Foundation, Inc. ;; Author: Johan Vromans <jv@mh.nl> -;; Version: 1.2.13 +;; Version: 1.2.14 +;; Keywords: non-text ;; This file is part of GNU Emacs. @@ -223,7 +224,7 @@ (provide 'forms) ;;; official (provide 'forms-mode) ;;; for compatibility -(defconst forms-version "1.2.13" +(defconst forms-version "1.2.14" "Version of forms-mode implementation.") (defvar forms-mode-hooks nil @@ -307,10 +308,10 @@ The replacement commands performs forms-first/last-record.") (defvar forms-fields nil "List with fields of the current forms. First field has number 1.") -(defvar forms-new-record-filter +(defvar forms-new-record-filter nil "The name of a function that is called when a new record is created.") -(defvar forms-modified-record-filter +(defvar forms-modified-record-filter nil "The name of a function that is called when a record has been modified.") ;;; forms-mode |