aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love2001-02-07 23:29:06 +0000
committerDave Love2001-02-07 23:29:06 +0000
commitd639db36274408d957eb7355f085994ae3e4ef8a (patch)
treea44034651a09aba170387a98d533b86b7c839633
parent48c9c43920ccfb606c22a194e0ec3e8556a0bd5d (diff)
downloademacs-d639db36274408d957eb7355f085994ae3e4ef8a.tar.gz
emacs-d639db36274408d957eb7355f085994ae3e4ef8a.zip
(find-tag-default-function): Fix :type.
-rw-r--r--lisp/progmodes/etags.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/etags.el b/lisp/progmodes/etags.el
index 3735b2f0ff6..1319def4a8f 100644
--- a/lisp/progmodes/etags.el
+++ b/lisp/progmodes/etags.el
@@ -120,7 +120,7 @@ If nil, and the symbol that is the value of `major-mode'
120has a `find-tag-default-function' property (see `put'), that is used. 120has a `find-tag-default-function' property (see `put'), that is used.
121Otherwise, `find-tag-default' is used." 121Otherwise, `find-tag-default' is used."
122 :group 'etags 122 :group 'etags
123 :type 'function) 123 :type '(choice (const nil) function))
124 124
125(defcustom find-tag-marker-ring-length 16 125(defcustom find-tag-marker-ring-length 16
126 "*Length of marker rings `find-tag-marker-ring' and `tags-location-ring'." 126 "*Length of marker rings `find-tag-marker-ring' and `tags-location-ring'."