summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/find-func.el
diff options
context:
space:
mode:
authorStephen Eglen <stephen@gnu.org>1998-02-22 22:01:28 +0000
committerStephen Eglen <stephen@gnu.org>1998-02-22 22:01:28 +0000
commit0b5bb3ec88b3d7126831e1b4e45b7d61febda0fa (patch)
treeeb60b0d064f017dc5c2d2c0793473b12384237a7 /lisp/emacs-lisp/find-func.el
parentccc3ce39b45078690269ce3aa674f433bcf1ba9c (diff)
downloademacs-0b5bb3ec88b3d7126831e1b4e45b7d61febda0fa.tar.gz
emacs-0b5bb3ec88b3d7126831e1b4e45b7d61febda0fa.tar.bz2
emacs-0b5bb3ec88b3d7126831e1b4e45b7d61febda0fa.zip
Customized.
Diffstat (limited to 'lisp/emacs-lisp/find-func.el')
-rw-r--r--lisp/emacs-lisp/find-func.el16
1 files changed, 12 insertions, 4 deletions
diff --git a/lisp/emacs-lisp/find-func.el b/lisp/emacs-lisp/find-func.el
index 40879895df3..e12d5c6cc61 100644
--- a/lisp/emacs-lisp/find-func.el
+++ b/lisp/emacs-lisp/find-func.el
@@ -57,18 +57,26 @@
;;;; Code:
;;; User variables:
+(defgroup find-function nil
+ "Find the definition of the elisp function near point."
+ :prefix "find-function"
+ :group 'lisp)
-(defvar find-function-function 'function-at-point
+(defcustom find-function-function 'function-at-point
"*The function used by `find-function' to select the function near
point.
-For example `function-at-point' or `function-called-at-point'.")
+For example `function-at-point' or `function-called-at-point'."
+ :type 'function
+ :group 'find-function)
-(defvar find-function-source-path nil
+(defcustom find-function-source-path nil
"The default list of directories where find-function searches.
If this variable is `nil' then find-function searches `load-path' by
-default.")
+default."
+ :type '(repeat directory)
+ :group 'find-function)
;;; Functions: