Function: mh-next-button
mh-next-button is an autoloaded, interactive and byte-compiled
function defined in mh-folder.el.gz.
Signature
(mh-next-button &optional BACKWARD-FLAG)
Documentation
Go to the next button.
If the end of the buffer is reached then the search wraps over to the start of the buffer.
If an optional prefix argument BACKWARD-FLAG is given, the cursor will move to the previous button.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-folder.el.gz
;;;###mh-autoload
(defun mh-next-button (&optional backward-flag)
"Go to the next button.
If the end of the buffer is reached then the search wraps over to
the start of the buffer.
If an optional prefix argument BACKWARD-FLAG is given, the cursor
will move to the previous button."
(interactive (list current-prefix-arg))
(unless mh-showing-mode
(mh-show))
(mh-in-show-buffer (mh-show-buffer)
(mh-goto-next-button backward-flag)))