diff options
author | Andreas Schwab <schwab@suse.de> | 1998-08-26 09:41:07 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 1998-08-26 09:41:07 +0000 |
commit | a62234679cd3fa24dc383a13272764e4c56592ee (patch) | |
tree | 7324f5f9e11f7822f168daedb4c0438a1609b5bb /lisp/emacs-lisp/find-func.el | |
parent | b88018d48f2283dc4f8db28553d7dda72d46bd4c (diff) | |
download | emacs-a62234679cd3fa24dc383a13272764e4c56592ee.tar.gz emacs-a62234679cd3fa24dc383a13272764e4c56592ee.tar.bz2 emacs-a62234679cd3fa24dc383a13272764e4c56592ee.zip |
Fix :version tags to have a string value, not a float.
Diffstat (limited to 'lisp/emacs-lisp/find-func.el')
-rw-r--r-- | lisp/emacs-lisp/find-func.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/emacs-lisp/find-func.el b/lisp/emacs-lisp/find-func.el index aebd8e68f80..53e06d590ff 100644 --- a/lisp/emacs-lisp/find-func.el +++ b/lisp/emacs-lisp/find-func.el @@ -64,7 +64,7 @@ should insert the function name. The default value avoids `defconst', Please send improvements and fixes to the maintainer." :type 'regexp :group 'find-function - :version 20.3) + :version "20.3") (defcustom find-variable-regexp "^\\s-*(def[^uma\W]\\w+\\*?\\s-+%s\\(\\s-\\|$\\)" @@ -75,7 +75,7 @@ avoids `defun', `defmacro', `defalias', `defadvice'. Please send improvements and fixes to the maintainer." :type 'regexp :group 'find-function - :version 20.3) + :version "20.3") (defcustom find-function-source-path nil "The default list of directories where find-function searches. @@ -91,14 +91,14 @@ A value of nil implies center the beginning of the definition. See the function `center-to-window-line' for more information, and `find-function' and `find-variable'." :group 'find-function - :version 20.3) + :version "20.3") (defcustom find-function-after-hook nil "Hook run after finding symbol definition. See the functions `find-function' and `find-variable'." :group 'find-function - :version 20.3) + :version "20.3") ;;; Functions: |