Function: nntp-record-command
nntp-record-command is a byte-compiled function defined in nntp.el.gz.
Signature
(nntp-record-command STRING)
Documentation
Record the command STRING.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/nntp.el.gz
(defun nntp-record-command (string)
"Record the command STRING."
(with-current-buffer (gnus-get-buffer-create "*nntp-log*")
(goto-char (point-max))
(insert (format-time-string "%Y%m%dT%H%M%S.%3N")
" " nntp-address " " string "\n")))