Function: find-tag-interactive
find-tag-interactive is a byte-compiled function defined in
etags.el.gz.
Signature
(find-tag-interactive PROMPT &optional NO-DEFAULT)
Documentation
Get interactive arguments for tag functions.
The functions using this are find-tag-noselect,
find-tag-other-window, and find-tag-regexp.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/etags.el.gz
(defun find-tag-interactive (prompt &optional no-default)
"Get interactive arguments for tag functions.
The functions using this are `find-tag-noselect',
`find-tag-other-window', and `find-tag-regexp'."
(if (and current-prefix-arg last-tag)
(list nil (if (< (prefix-numeric-value current-prefix-arg) 0)
'-
t))
(list (if no-default
(read-string prompt)
(find-tag-tag prompt)))))