Function: vi-ask-for-info
vi-ask-for-info is an interactive and byte-compiled function defined
in vi.el.gz.
Signature
(vi-ask-for-info CHAR)
Documentation
Inquire status info. The next CHAR will specify the particular info requested.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/vi.el.gz
(defun vi-ask-for-info (char)
"Inquire status info. The next CHAR will specify the particular info requested."
(interactive "c")
(cond ((char-equal char ?l) (what-line))
((char-equal char ?c) (what-cursor-position))
((char-equal char ?p) (what-page))
(t (message "Ask for: l(ine number), c(ursor position), p(age number)")
(setq char (read-char))
(vi-ask-for-info char))))