aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Schwab1998-08-26 09:41:07 +0000
committerAndreas Schwab1998-08-26 09:41:07 +0000
commita62234679cd3fa24dc383a13272764e4c56592ee (patch)
tree7324f5f9e11f7822f168daedb4c0438a1609b5bb
parentb88018d48f2283dc4f8db28553d7dda72d46bd4c (diff)
downloademacs-a62234679cd3fa24dc383a13272764e4c56592ee.tar.gz
emacs-a62234679cd3fa24dc383a13272764e4c56592ee.zip
Fix :version tags to have a string value, not a float.
-rw-r--r--lisp/emacs-lisp/find-func.el8
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',
64Please send improvements and fixes to the maintainer." 64Please send improvements and fixes to the maintainer."
65 :type 'regexp 65 :type 'regexp
66 :group 'find-function 66 :group 'find-function
67 :version 20.3) 67 :version "20.3")
68 68
69(defcustom find-variable-regexp 69(defcustom find-variable-regexp
70 "^\\s-*(def[^uma\W]\\w+\\*?\\s-+%s\\(\\s-\\|$\\)" 70 "^\\s-*(def[^uma\W]\\w+\\*?\\s-+%s\\(\\s-\\|$\\)"
@@ -75,7 +75,7 @@ avoids `defun', `defmacro', `defalias', `defadvice'.
75Please send improvements and fixes to the maintainer." 75Please send improvements and fixes to the maintainer."
76 :type 'regexp 76 :type 'regexp
77 :group 'find-function 77 :group 'find-function
78 :version 20.3) 78 :version "20.3")
79 79
80(defcustom find-function-source-path nil 80(defcustom find-function-source-path nil
81 "The default list of directories where find-function searches. 81 "The default list of directories where find-function searches.
@@ -91,14 +91,14 @@ A value of nil implies center the beginning of the definition.
91See the function `center-to-window-line' for more information, and 91See the function `center-to-window-line' for more information, and
92`find-function' and `find-variable'." 92`find-function' and `find-variable'."
93 :group 'find-function 93 :group 'find-function
94 :version 20.3) 94 :version "20.3")
95 95
96(defcustom find-function-after-hook nil 96(defcustom find-function-after-hook nil
97 "Hook run after finding symbol definition. 97 "Hook run after finding symbol definition.
98 98
99See the functions `find-function' and `find-variable'." 99See the functions `find-function' and `find-variable'."
100 :group 'find-function 100 :group 'find-function
101 :version 20.3) 101 :version "20.3")
102 102
103;;; Functions: 103;;; Functions:
104 104