Function: vtable-set-buffer
vtable-set-buffer is a byte-compiled function defined in vtable.el.gz.
Signature
(vtable-set-buffer TABLE BUFFER)
Documentation
Associate BUFFER with TABLE.
Use this function with care, and ensure your vtable instance renders itself in the new buffer.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/vtable.el.gz
(defun vtable-set-buffer (table buffer)
"Associate BUFFER with TABLE.
Use this function with care, and ensure your vtable instance renders
itself in the new buffer."
(setf (vtable-buffer table) buffer))