Function: table--log
table--log is a macro defined in table.el.gz.
Signature
(table--log &rest BODY)
Documentation
Debug logging macro.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/table.el.gz
(defmacro table--log (&rest body)
"Debug logging macro."
`(with-current-buffer (get-buffer-create "log")
(goto-char (point-min))
(let ((standard-output (current-buffer)))
,@body)))