Function: ebrowse-forward-in-position-stack
ebrowse-forward-in-position-stack is an autoloaded, interactive and
byte-compiled function defined in ebrowse.el.gz.
Signature
(ebrowse-forward-in-position-stack ARG)
Documentation
Move forward in the position stack.
Prefix arg ARG says how much.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/ebrowse.el.gz
;;;###autoload
(defun ebrowse-forward-in-position-stack (arg)
"Move forward in the position stack.
Prefix arg ARG says how much."
(interactive "p")
(ebrowse-move-in-position-stack (min -1 (- arg))))