Function: Info-desktop-buffer-misc-data
Info-desktop-buffer-misc-data is a byte-compiled function defined in
info.el.gz.
Signature
(Info-desktop-buffer-misc-data DESKTOP-DIRNAME)
Documentation
Auxiliary information to be saved in desktop file.
Source Code
;; Defined in /usr/src/emacs/lisp/info.el.gz
;;;; Desktop support
(defun Info-desktop-buffer-misc-data (_desktop-dirname)
"Auxiliary information to be saved in desktop file."
(list Info-current-file
Info-current-node
;; Additional data as an association list.
(delq nil (list
(and Info-history
(cons 'history Info-history))
(and (Info-virtual-fun
'slow Info-current-file Info-current-node)
(cons 'slow t))))))