aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1993-07-22 05:49:37 +0000
committerRichard M. Stallman1993-07-22 05:49:37 +0000
commit23b97eb96a339d72e654784749268281cfa094fd (patch)
tree82fba2d39589220671b71930ec60bfc66f8c275a
parentac29eb79ce6c4d576005332d61c0ffc785fe1bed (diff)
downloademacs-23b97eb96a339d72e654784749268281cfa094fd.tar.gz
emacs-23b97eb96a339d72e654784749268281cfa094fd.zip
(complete): Use sit-for, not cmpl19-sit-for.
-rw-r--r--lisp/completion.el4
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 ::
1867 ;; Don't accept completions 1867 ;; Don't accept completions
1868 (setq completion-to-accept nil) 1868 (setq completion-to-accept nil)
1869 ;; print message 1869 ;; print message
1870 (if (and print-status-p (cmpl19-sit-for 0)) 1870 ;; This used to call cmpl19-sit-for, an undefined function.
1871 ;; I hope that sit-for does the right thing; I don't know -- rms.
1872 (if (and print-status-p (sit-for 0))
1871 (message "No %scompletions." 1873 (message "No %scompletions."
1872 (if (eq this-command last-command) "more " ""))) 1874 (if (eq this-command last-command) "more " "")))
1873 ;; statistics 1875 ;; statistics