comparison lisp/emacs-lisp/find-func.el @ 23100:043247d0ced9

Fix :version tags to have a string value, not a float.
author Andreas Schwab <schwab@suse.de>
date Wed, 26 Aug 1998 09:41:07 +0000
parents 7e35e50acaa4
children d311287a03a6
comparison
equal deleted inserted replaced
23099:ad057569785d 23100:043247d0ced9
62 `defgroup', `defvar'. 62 `defgroup', `defvar'.
63 63
64 Please send improvements and fixes to the maintainer." 64 Please 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-\\|$\\)"
71 "The regexp used by `find-variable' to search for a variable definition. 71 "The regexp used by `find-variable' to search for a variable definition.
72 It should match right up to the variable name. The default value 72 It should match right up to the variable name. The default value
73 avoids `defun', `defmacro', `defalias', `defadvice'. 73 avoids `defun', `defmacro', `defalias', `defadvice'.
74 74
75 Please send improvements and fixes to the maintainer." 75 Please 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.
82 82
83 If this variable is `nil' then find-function searches `load-path' by 83 If this variable is `nil' then find-function searches `load-path' by
89 "The window line-number from which to start displaying a symbol definition. 89 "The window line-number from which to start displaying a symbol definition.
90 A value of nil implies center the beginning of the definition. 90 A value of nil implies center the beginning of the definition.
91 See the function `center-to-window-line' for more information, and 91 See 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
99 See the functions `find-function' and `find-variable'." 99 See 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
105 (defun find-function-search-for-symbol (symbol variable-p library) 105 (defun find-function-search-for-symbol (symbol variable-p library)
106 "Search for SYMBOL in LIBRARY. 106 "Search for SYMBOL in LIBRARY.