summaryrefslogtreecommitdiff
path: root/lisp/completion.el
diff options
context:
space:
mode:
authorPavel Janík <Pavel@Janik.cz>2001-12-20 18:59:32 +0000
committerPavel Janík <Pavel@Janik.cz>2001-12-20 18:59:32 +0000
commit0ff9b955fe8d8032f5c139dcc86990f0177b646f (patch)
treeca703702f9fd7d7a9a15f77cb5cdc28c5767bdc2 /lisp/completion.el
parent3c08498acc0ad4b82ffa5e13b87f098cdb5fcda8 (diff)
downloademacs-0ff9b955fe8d8032f5c139dcc86990f0177b646f.tar.gz
Doc fixes.
Diffstat (limited to 'lisp/completion.el')
-rw-r--r--lisp/completion.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/completion.el b/lisp/completion.el
index 152f72cab3d..85e38549b3b 100644
--- a/lisp/completion.el
+++ b/lisp/completion.el
@@ -842,7 +842,7 @@ during the search."
(reset-cdabbrev-window t))
(defun set-cdabbrev-buffer ()
- ;; cdabbrev-current-window must not be NIL
+ ;; cdabbrev-current-window must not be nil
(set-buffer (if (eq cdabbrev-current-window t)
(other-buffer)
(window-buffer cdabbrev-current-window))))
@@ -1001,7 +1001,7 @@ Each symbol is bound to a single completion entry.")
;; A completion entry is a LIST of string, prefix-symbol num-uses, and
;; last-use-time (the time the completion was last used)
-;; last-use-time is T if the string should be kept permanently
+;; last-use-time is t if the string should be kept permanently
;; num-uses is incremented every time the completion is used.
;; We chose lists because (car foo) is faster than (aref foo 0) and the
@@ -1019,7 +1019,7 @@ Each symbol is bound to a single completion entry.")
(defmacro completion-last-use-time (completion-entry)
;; "The time it was last used. In hours since origin. Used to decide
- ;; whether to save it. T if one should always save it."
+ ;; whether to save it. t if one should always save it."
(list 'nth 2 completion-entry))
(defmacro completion-source (completion-entry)
@@ -1132,7 +1132,7 @@ Each symbol is bound to a single completion entry.")
;; "The interned prefix symbol corresponding to cmpl-db-downcase-string."
(defvar cmpl-db-entry nil)
(defvar cmpl-db-debug-p nil
- "Set to T if you want to debug the database.")
+ "Set to t if you want to debug the database.")
;; READS
(defun find-exact-completion (string)