diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2022-10-18 18:43:50 -0400 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2022-10-18 18:43:50 -0400 |
commit | 155ddde4dd3f6246814ab76bc2f54f4d571bbd15 (patch) | |
tree | 284a73e46d13a1f426fea2655e7bbe601e4b5ca7 /lisp/eshell/esh-util.el | |
parent | 2cca6408fde59e57a0937e561675d181f7fa226e (diff) | |
download | emacs-155ddde4dd3f6246814ab76bc2f54f4d571bbd15.tar.gz emacs-155ddde4dd3f6246814ab76bc2f54f4d571bbd15.tar.bz2 emacs-155ddde4dd3f6246814ab76bc2f54f4d571bbd15.zip |
(sit-for): Add compiler-macro to warn about obsolete calling convention
* lisp/subr.el (sit-for): Add compiler-macro.
* lisp/eshell/esh-util.el (eshell-redisplay):
* lisp/play/zone.el (zone, zone-pgm-jitter, zone-pgm-whack-chars):
(zone-remove-text): Avoid obsolete calling convention.
Diffstat (limited to 'lisp/eshell/esh-util.el')
-rw-r--r-- | lisp/eshell/esh-util.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/eshell/esh-util.el b/lisp/eshell/esh-util.el index 9b464a0a137..f47373c115f 100644 --- a/lisp/eshell/esh-util.el +++ b/lisp/eshell/esh-util.el @@ -455,7 +455,7 @@ list." ;; runs while point is in the minibuffer and the users attempt ;; to use completion. Don't ask me. (condition-case nil - (sit-for 0 0) + (sit-for 0) (error nil))) (defun eshell-read-passwd-file (file) |