Function: ido-record-command

ido-record-command is a byte-compiled function defined in ido.el.gz.

Signature

(ido-record-command COMMAND ARG)

Documentation

Add (COMMAND ARG) to command-history(var)/command-history(fun) if ido-record-commands is non-nil.

Source Code

;; Defined in /usr/src/emacs/lisp/ido.el.gz
(defun ido-record-command (command arg)
  "Add (COMMAND ARG) to `command-history' if `ido-record-commands' is non-nil."
  (when ido-record-commands
    (add-to-history 'command-history (list command arg))))