Function: dictionary-restore-state

dictionary-restore-state is a byte-compiled function defined in dictionary.el.gz.

Signature

(dictionary-restore-state &rest IGNORED)

Documentation

Restore the state just before the last operation.

Source Code

;; Defined in /usr/src/emacs/lisp/net/dictionary.el.gz
;; Restore the previous state
(defun dictionary-restore-state (&rest _ignored)
  "Restore the state just before the last operation."
  (let ((position (pop dictionary-position-stack))
	(data (pop dictionary-data-stack)))
    (unless position
      (error "Already at begin of history"))
    (apply (car data) (cdr data))
    (set-window-start (selected-window) (cdr position))
    (goto-char (car position))
    (setq dictionary-current-data data)))