Function: table--set-timer
table--set-timer is a byte-compiled function defined in table.el.gz.
This function is obsolete since 28.1; use run-with-idle-timer
instead.
Signature
(table--set-timer SECONDS FUNC ARGS)
Documentation
Generic wrapper for setting up a timer.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/table.el.gz
(defun table--set-timer (seconds func args)
"Generic wrapper for setting up a timer."
(declare (obsolete run-with-idle-timer "28.1"))
(run-with-idle-timer seconds nil func args))