1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-25 07:28:20 +00:00

Initial revision

This commit is contained in:
Jim Blandy 1993-03-09 23:02:46 +00:00
parent 00b3f57b23
commit 92e30bc5e0

5
lisp/emacs-lisp/lucid.el Normal file
View File

@ -0,0 +1,5 @@
(defun add-timeout (secs function object &optional resignal)
(run-at-time secs resignal function object))
(defun disable-timeout (timeout)
(cancel-timer timeout))