Function: ex-fixup-history
ex-fixup-history is a byte-compiled function defined in
viper-ex.el.gz.
Signature
(ex-fixup-history &rest ARGS)
Source Code
;; Defined in /usr/src/emacs/lisp/emulation/viper-ex.el.gz
;; this function fixes ex-history for some commands like ex-read, ex-edit
(defun ex-fixup-history (&rest args)
(setq viper-ex-history
(cons (mapconcat #'identity args " ") (cdr viper-ex-history))))