Function: dictionary-previous
dictionary-previous is an interactive and byte-compiled function
defined in dictionary.el.gz.
Signature
(dictionary-previous)
Documentation
Go to the previous location in the current buffer.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/net/dictionary.el.gz
(defun dictionary-previous ()
"Go to the previous location in the current buffer."
(interactive)
(unless (dictionary-mode-p)
(error "Current buffer is no dictionary buffer"))
(dictionary-restore-state))