diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2019-02-10 23:47:43 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2019-02-10 23:54:34 -0800 |
commit | 57c74793c46c6533b63836f00aecaf3ac2accb6d (patch) | |
tree | 5ceb3f9e765c4240069f92653d1648ca1137887c /lisp/progmodes/flymake.el | |
parent | 54b9ee77adca44299fe8f4342498a082608b4d1b (diff) | |
download | emacs-57c74793c46c6533b63836f00aecaf3ac2accb6d.tar.gz |
Prefer encode-time to its alias
* lisp/calendar/icalendar.el, lisp/calendar/timeclock.el:
* lisp/emacs-lisp/timer.el, lisp/gnus/gnus-delay.el:
* lisp/gnus/gnus-sum.el, lisp/gnus/nndiary.el:
* lisp/gnus/nnrss.el, lisp/net/newst-backend.el:
* lisp/net/rcirc.el, lisp/obsolete/xesam.el:
* lisp/org/org-agenda.el, lisp/org/org-clock.el:
* lisp/org/org-element.el, lisp/org/org-timer.el:
* lisp/org/org.el, lisp/progmodes/flymake.el:
* lisp/url/url-cache.el, lisp/url/url-cookie.el:
Use encode-time instead of its alias seconds-to-time.
Diffstat (limited to 'lisp/progmodes/flymake.el')
-rw-r--r-- | lisp/progmodes/flymake.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/flymake.el b/lisp/progmodes/flymake.el index d991ccafc98..261e50a613f 100644 --- a/lisp/progmodes/flymake.el +++ b/lisp/progmodes/flymake.el @@ -1004,7 +1004,7 @@ Do it only if `flymake-no-changes-timeout' is non-nil." (setq flymake-timer (run-with-idle-timer - (seconds-to-time flymake-no-changes-timeout) + (encode-time flymake-no-changes-timeout) nil (lambda (buffer) (when (buffer-live-p buffer) |