Function: xwidget-log
xwidget-log is a byte-compiled function defined in xwidget.el.gz.
Signature
(xwidget-log &rest MSG)
Documentation
Log MSG to a buffer.
Source Code
;; Defined in /usr/src/emacs/lisp/xwidget.el.gz
(defun xwidget-log (&rest msg)
"Log MSG to a buffer."
(let ((buf (get-buffer-create " *xwidget-log*")))
(with-current-buffer buf
(insert (apply #'format msg))
(insert "\n"))))