Function: vtable-revert-command
vtable-revert-command is an interactive and byte-compiled function
defined in vtable.el.gz.
Signature
(vtable-revert-command &optional TABLE)
Documentation
Re-query data and regenerate TABLE.
If TABLE is nil, use the table under point.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/vtable.el.gz
(defun vtable-revert-command (&optional table)
"Re-query data and regenerate TABLE.
If TABLE is nil, use the table under point."
(interactive)
(setq table (or table (vtable-current-table)))
(unless table
(user-error "No table found"))
(when (vtable-objects-function table)
(setf (vtable-objects table) (funcall (vtable-objects-function table))))
(vtable--clear-cache table)
(vtable-revert table))