Function: apropos-next-symbol

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

Signature

(apropos-next-symbol)

Documentation

Move cursor down to the next 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-next-symbol ()
  "Move cursor down to the next symbol in an `apropos-mode' buffer."
  (interactive nil apropos-mode)
  (forward-line)
  (while (and (not (eq (face-at-point) 'apropos-symbol))
              (< (point) (point-max)))
    (forward-line)))