Function: evil-echo-area-restore

evil-echo-area-restore is a byte-compiled function defined in evil-common.el.

Signature

(evil-echo-area-restore)

Documentation

Restore the echo area from evil-echo-area-message.

Does not restore if evil-write-echo-area is non-nil.

Source Code

;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-common.el
(defun evil-echo-area-restore ()
  "Restore the echo area from `evil-echo-area-message'.
Does not restore if `evil-write-echo-area' is non-nil."
  (unless evil-write-echo-area
    (if evil-echo-area-message
        (message "%s" evil-echo-area-message)
      (message nil)))
  (setq evil-echo-area-message nil
        evil-write-echo-area nil))