Mercurial > emacs
changeset 4218:8e42b7df5c4f
(complete): Use sit-for, not cmpl19-sit-for.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 22 Jul 1993 05:49:37 +0000 |
parents | 997e8a52f9fd |
children | 24f3ca095be9 |
files | lisp/completion.el |
diffstat | 1 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/completion.el Thu Jul 22 05:47:10 1993 +0000 +++ b/lisp/completion.el Thu Jul 22 05:49:37 1993 +0000 @@ -1867,7 +1867,9 @@ ;; Don't accept completions (setq completion-to-accept nil) ;; print message - (if (and print-status-p (cmpl19-sit-for 0)) + ;; This used to call cmpl19-sit-for, an undefined function. + ;; I hope that sit-for does the right thing; I don't know -- rms. + (if (and print-status-p (sit-for 0)) (message "No %scompletions." (if (eq this-command last-command) "more " ""))) ;; statistics