Function: apropos-previous-symbol

apropos-previous-symbol is an interactive and byte-compiled function defined in apropos.el.gz.

Signature

(apropos-previous-symbol)

Documentation

Move cursor back to the last symbol in an apropos-mode buffer.

Probably introduced at or before Emacs version 28.1.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/apropos.el.gz
(defun apropos-previous-symbol ()
  "Move cursor back to the last symbol in an `apropos-mode' buffer."
  (interactive nil apropos-mode)
  (forward-line -1)
  (while (and (not (eq (face-at-point) 'apropos-symbol))
              (> (point) (point-min)))
    (forward-line -1)))