comparison lisp/progmodes/etags.el @ 35961:850d490d87f3

(find-tag-default-function): Fix :type.
author Dave Love <fx@gnu.org>
date Wed, 07 Feb 2001 23:29:06 +0000
parents 3379eca770e2
children 2eea125a1272
comparison
equal deleted inserted replaced
35960:a21a0d45ea19 35961:850d490d87f3
118 "*A function of no arguments used by \\[find-tag] to pick a default tag. 118 "*A function of no arguments used by \\[find-tag] to pick a default tag.
119 If nil, and the symbol that is the value of `major-mode' 119 If nil, and the symbol that is the value of `major-mode'
120 has a `find-tag-default-function' property (see `put'), that is used. 120 has a `find-tag-default-function' property (see `put'), that is used.
121 Otherwise, `find-tag-default' is used." 121 Otherwise, `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'."
127 :group 'etags 127 :group 'etags
128 :type 'integer 128 :type 'integer