diff options
author | Richard M. Stallman <rms@gnu.org> | 1993-07-22 05:49:37 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1993-07-22 05:49:37 +0000 |
commit | 8aab9079c38b9bdda9f94f9fb573cc84ba17b093 (patch) | |
tree | d803c476e6b543514b3298c8c2a81dd35998f993 /lisp/completion.el | |
parent | 38433fe197d1dc4216e9c8f5b7724d13a5a5ab0e (diff) | |
download | emacs-8aab9079c38b9bdda9f94f9fb573cc84ba17b093.tar.gz |
(complete): Use sit-for, not cmpl19-sit-for.
Diffstat (limited to 'lisp/completion.el')
-rw-r--r-- | lisp/completion.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/completion.el b/lisp/completion.el index b097788d737..ae4c0a36257 100644 --- a/lisp/completion.el +++ b/lisp/completion.el @@ -1867,7 +1867,9 @@ Prefix args :: ;; 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 |