Function: nnimap-log-command
nnimap-log-command is a byte-compiled function defined in
nnimap.el.gz.
Signature
(nnimap-log-command COMMAND)
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/nnimap.el.gz
(defun nnimap-log-command (command)
(when nnimap-record-commands
(with-current-buffer (nnimap-log-buffer)
(goto-char (point-max))
(insert (format-time-string "%H:%M:%S")
" [" nnimap-address "] "
(if nnimap-inhibit-logging
"(inhibited)\n"
command))))
command)