]> code.delx.au - gnu-emacs/blobdiff - lisp/emacs-lisp/timer.el
; Merge from origin/emacs-25
[gnu-emacs] / lisp / emacs-lisp / timer.el
index c80c49630ec257e843ef78005ea505a66955dd82..c01ea4973c72a451102ce2127a92096c7dbfd4b9 100644 (file)
@@ -1,6 +1,6 @@
 ;;; timer.el --- run a function with args at some time in future
 
-;; Copyright (C) 1996, 2001-2015 Free Software Foundation, Inc.
+;; Copyright (C) 1996, 2001-2016 Free Software Foundation, Inc.
 
 ;; Maintainer: emacs-devel@gnu.org
 ;; Package: emacs
@@ -345,22 +345,23 @@ This function is called, by name, directly by the C code."
 (defun run-at-time (time repeat function &rest args)
   "Perform an action at time TIME.
 Repeat the action every REPEAT seconds, if REPEAT is non-nil.
+REPEAT may be an integer or floating point number.
 TIME should be one of:
-- a string giving an absolute time like \"11:23pm\" (the
-  acceptable formats are those recognized by
-  `diary-entry-time'; note that such times are interpreted
-  as times today, even if in the past);
-- a string giving a relative time like \"2 hours 35 minutes\"
-  (the acceptable formats are those recognized by
-  `timer-duration');
-- nil meaning now;
+- a string giving today's time like \"11:23pm\"
+  (the acceptable formats are HHMM, H:MM, HH:MM, HHam, HHAM,
+  HHpm, HHPM, HH:MMam, HH:MMAM, HH:MMpm, or HH:MMPM;
+  a period `.' can be used instead of a colon `:' to separate
+  the hour and minute parts);
+- a string giving a relative time like \"90\" or \"2 hours 35 minutes\"
+  (the acceptable forms are a number of seconds without units
+  or some combination of values using units in `timer-duration-words');
+- nil, meaning now;
 - a number of seconds from now;
 - a value from `encode-time';
 - or t (with non-nil REPEAT) meaning the next integral
   multiple of REPEAT.
 
-REPEAT may be an integer or floating point number.  The
-action is to call FUNCTION with arguments ARGS.
+The action is to call FUNCTION with arguments ARGS.
 
 This function returns a timer object which you can use in
 `cancel-timer'."
@@ -423,6 +424,8 @@ This function returns a timer object which you can use in `cancel-timer'."
 (defun add-timeout (secs function object &optional repeat)
   "Add a timer to run SECS seconds from now, to call FUNCTION on OBJECT.
 If REPEAT is non-nil, repeat the timer every REPEAT seconds.
+
+This function returns a timer object which you can use in `cancel-timer'.
 This function is for compatibility; see also `run-with-timer'."
   (run-with-timer secs repeat function object))