From 155ddde4dd3f6246814ab76bc2f54f4d571bbd15 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Tue, 18 Oct 2022 18:43:50 -0400 Subject: (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. --- lisp/eshell/esh-util.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lisp/eshell/esh-util.el') 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) -- cgit v1.2.3