diff options
| author | Pavel Janík | 2001-12-20 19:01:00 +0000 |
|---|---|---|
| committer | Pavel Janík | 2001-12-20 19:01:00 +0000 |
| commit | f0529b5b1aeb64a7df9765781948a5edbfc80b1e (patch) | |
| tree | 158ac5ca37e5347b9cc96ffe5514ab852e3aa8b9 | |
| parent | 0ff9b955fe8d8032f5c139dcc86990f0177b646f (diff) | |
| download | emacs-f0529b5b1aeb64a7df9765781948a5edbfc80b1e.tar.gz emacs-f0529b5b1aeb64a7df9765781948a5edbfc80b1e.zip | |
Doc fix.
41 files changed, 51 insertions, 48 deletions
diff --git a/lisp/bookmark.el b/lisp/bookmark.el index 3c258b2689b..53939f92ca6 100644 --- a/lisp/bookmark.el +++ b/lisp/bookmark.el | |||
| @@ -169,7 +169,7 @@ recently set ones come first, oldest ones come last)." | |||
| 169 | 169 | ||
| 170 | 170 | ||
| 171 | (defcustom bookmark-automatically-show-annotations t | 171 | (defcustom bookmark-automatically-show-annotations t |
| 172 | "*Nil means don't show annotations when jumping to a bookmark." | 172 | "*nil means don't show annotations when jumping to a bookmark." |
| 173 | :type 'boolean | 173 | :type 'boolean |
| 174 | :group 'bookmark) | 174 | :group 'bookmark) |
| 175 | 175 | ||
diff --git a/lisp/calc/calc-ext.el b/lisp/calc/calc-ext.el index e068cad01cc..8474f61fc0e 100644 --- a/lisp/calc/calc-ext.el +++ b/lisp/calc/calc-ext.el | |||
| @@ -3269,7 +3269,7 @@ calc-kill calc-kill-region calc-yank)))) | |||
| 3269 | 3269 | ||
| 3270 | ;;; Users can redefine this in their .emacs files. | 3270 | ;;; Users can redefine this in their .emacs files. |
| 3271 | (defvar calc-keypad-user-menu nil | 3271 | (defvar calc-keypad-user-menu nil |
| 3272 | "If not NIL, this describes an additional menu for calc-keypad. | 3272 | "If non-nil, this describes an additional menu for calc-keypad. |
| 3273 | It should contain a list of three rows. | 3273 | It should contain a list of three rows. |
| 3274 | Each row should be a list of six keys. | 3274 | Each row should be a list of six keys. |
| 3275 | Each key should be a list of a label string, plus a Calc command name spec. | 3275 | Each key should be a list of a label string, plus a Calc command name spec. |
diff --git a/lisp/calc/calc-forms.el b/lisp/calc/calc-forms.el index 255abe8811b..7924161711c 100644 --- a/lisp/calc/calc-forms.el +++ b/lisp/calc/calc-forms.el | |||
| @@ -1475,7 +1475,7 @@ and ends on the last Sunday of October at 2 a.m." | |||
| 1475 | 1475 | ||
| 1476 | 1476 | ||
| 1477 | ;;; Compute the date a certain number of business days since Jan 1, 1 AD. | 1477 | ;;; Compute the date a certain number of business days since Jan 1, 1 AD. |
| 1478 | ;;; If this returns NIL, holiday table was adjusted; redo calculation. | 1478 | ;;; If this returns nil, holiday table was adjusted; redo calculation. |
| 1479 | 1479 | ||
| 1480 | (defun math-from-business-day (num) | 1480 | (defun math-from-business-day (num) |
| 1481 | (let* ((day (math-floor num)) | 1481 | (let* ((day (math-floor num)) |
diff --git a/lisp/calc/calc-math.el b/lisp/calc/calc-math.el index 0a14e05a7a1..c8440084b0b 100644 --- a/lisp/calc/calc-math.el +++ b/lisp/calc/calc-math.el | |||
| @@ -271,7 +271,7 @@ | |||
| 271 | (math-floor (math-sqrt a)))) | 271 | (math-floor (math-sqrt a)))) |
| 272 | 272 | ||
| 273 | 273 | ||
| 274 | ;;; This returns (flag . result) where the flag is T if A is a perfect square. | 274 | ;;; This returns (flag . result) where the flag is t if A is a perfect square. |
| 275 | (defun math-isqrt-bignum (a) ; [P.l L] | 275 | (defun math-isqrt-bignum (a) ; [P.l L] |
| 276 | (let ((len (length a))) | 276 | (let ((len (length a))) |
| 277 | (if (= (% len 2) 0) | 277 | (if (= (% len 2) 0) |
diff --git a/lisp/calc/calc-mtx.el b/lisp/calc/calc-mtx.el index 3e3d2a37607..a56d3f8d698 100644 --- a/lisp/calc/calc-mtx.el +++ b/lisp/calc/calc-mtx.el | |||
| @@ -219,7 +219,7 @@ | |||
| 219 | (math-det-step (1- n) (math-mul prod (nth n (nth n lu)))) | 219 | (math-det-step (1- n) (math-mul prod (nth n (nth n lu)))) |
| 220 | prod)) | 220 | prod)) |
| 221 | 221 | ||
| 222 | ;;; This returns a list (LU index d), or NIL if not possible. | 222 | ;;; This returns a list (LU index d), or nil if not possible. |
| 223 | ;;; Argument M must be a square matrix. | 223 | ;;; Argument M must be a square matrix. |
| 224 | (defvar math-lud-cache nil) | 224 | (defvar math-lud-cache nil) |
| 225 | (defun math-matrix-lud (m) | 225 | (defun math-matrix-lud (m) |
diff --git a/lisp/cvs-status.el b/lisp/cvs-status.el index 37836f5d70e..4970c19d1fe 100644 --- a/lisp/cvs-status.el +++ b/lisp/cvs-status.el | |||
| @@ -4,7 +4,7 @@ | |||
| 4 | 4 | ||
| 5 | ;; Author: Stefan Monnier <monnier@cs.yale.edu> | 5 | ;; Author: Stefan Monnier <monnier@cs.yale.edu> |
| 6 | ;; Keywords: pcl-cvs cvs status tree | 6 | ;; Keywords: pcl-cvs cvs status tree |
| 7 | ;; Revision: $Id: cvs-status.el,v 1.9 2000/12/06 19:50:12 fx Exp $ | 7 | ;; Revision: $Id: cvs-status.el,v 1.10 2000/12/18 03:17:31 monnier Exp $ |
| 8 | 8 | ||
| 9 | ;; This file is part of GNU Emacs. | 9 | ;; This file is part of GNU Emacs. |
| 10 | 10 | ||
| @@ -306,7 +306,7 @@ BEWARE: because of stability issues, this is not a symetric operation." | |||
| 306 | 306 | ||
| 307 | (defun cvs-status-get-tags () | 307 | (defun cvs-status-get-tags () |
| 308 | "Look for a list of tags, read them in and delete them. | 308 | "Look for a list of tags, read them in and delete them. |
| 309 | Returns NIL if there was an empty list of tags and T if there wasn't | 309 | Return nil if there was an empty list of tags and t if there wasn't |
| 310 | even a list. Else, return the list of tags where each element of | 310 | even a list. Else, return the list of tags where each element of |
| 311 | the list is a three-string list TAG, KIND, REV." | 311 | the list is a three-string list TAG, KIND, REV." |
| 312 | (let ((tags nil)) | 312 | (let ((tags nil)) |
| @@ -516,6 +516,9 @@ Optional prefix ARG chooses between two representations." | |||
| 516 | 516 | ||
| 517 | ;;; Change Log: | 517 | ;;; Change Log: |
| 518 | ;; $Log: cvs-status.el,v $ | 518 | ;; $Log: cvs-status.el,v $ |
| 519 | ;; Revision 1.10 2000/12/18 03:17:31 monnier | ||
| 520 | ;; Remove useless Version. | ||
| 521 | ;; | ||
| 519 | ;; Revision 1.9 2000/12/06 19:50:12 fx | 522 | ;; Revision 1.9 2000/12/06 19:50:12 fx |
| 520 | ;; Fix copyright years. | 523 | ;; Fix copyright years. |
| 521 | ;; | 524 | ;; |
diff --git a/lisp/dired.el b/lisp/dired.el index e1b4552411e..76f65d4064b 100644 --- a/lisp/dired.el +++ b/lisp/dired.el | |||
| @@ -1944,7 +1944,7 @@ Optional argument means return a file name relative to `default-directory'." | |||
| 1944 | 1944 | ||
| 1945 | (defcustom dired-recursive-deletes nil ; Default only delete empty directories. | 1945 | (defcustom dired-recursive-deletes nil ; Default only delete empty directories. |
| 1946 | "*Decide whether recursive deletes are allowed. | 1946 | "*Decide whether recursive deletes are allowed. |
| 1947 | Nil means no recursive deletes. | 1947 | nil means no recursive deletes. |
| 1948 | `always' means delete recursively without asking. This is DANGEROUS! | 1948 | `always' means delete recursively without asking. This is DANGEROUS! |
| 1949 | `top' means ask for each directory at top level, but delete its subdirectories | 1949 | `top' means ask for each directory at top level, but delete its subdirectories |
| 1950 | without asking. | 1950 | without asking. |
diff --git a/lisp/ediff-merg.el b/lisp/ediff-merg.el index 5242014eb7e..88034dbbd56 100644 --- a/lisp/ediff-merg.el +++ b/lisp/ediff-merg.el | |||
| @@ -82,7 +82,7 @@ STRING4 | |||
| 82 | (defcustom ediff-show-clashes-only nil | 82 | (defcustom ediff-show-clashes-only nil |
| 83 | "*If t, show only those diff regions where both buffers disagree with the ancestor. | 83 | "*If t, show only those diff regions where both buffers disagree with the ancestor. |
| 84 | This means that regions that have status prefer-A or prefer-B will be | 84 | This means that regions that have status prefer-A or prefer-B will be |
| 85 | skipped over. Nil means show all regions." | 85 | skipped over. nil means show all regions." |
| 86 | :type 'boolean | 86 | :type 'boolean |
| 87 | :group 'ediff-merge | 87 | :group 'ediff-merge |
| 88 | ) | 88 | ) |
diff --git a/lisp/emacs-lisp/byte-opt.el b/lisp/emacs-lisp/byte-opt.el index dbe039866e0..37fe9f187e1 100644 --- a/lisp/emacs-lisp/byte-opt.el +++ b/lisp/emacs-lisp/byte-opt.el | |||
| @@ -1235,7 +1235,7 @@ | |||
| 1235 | (defun disassemble-offset () | 1235 | (defun disassemble-offset () |
| 1236 | "Don't call this!" | 1236 | "Don't call this!" |
| 1237 | ;; fetch and return the offset for the current opcode. | 1237 | ;; fetch and return the offset for the current opcode. |
| 1238 | ;; return NIL if this opcode has no offset | 1238 | ;; return nil if this opcode has no offset |
| 1239 | ;; OP, PTR and BYTES are used and set dynamically | 1239 | ;; OP, PTR and BYTES are used and set dynamically |
| 1240 | (defvar op) | 1240 | (defvar op) |
| 1241 | (defvar ptr) | 1241 | (defvar ptr) |
diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el index 873032efdff..7026ece12b9 100644 --- a/lisp/emacs-lisp/cl-macs.el +++ b/lisp/emacs-lisp/cl-macs.el | |||
| @@ -2376,7 +2376,7 @@ Otherwise, return result of last FORM." | |||
| 2376 | v) | 2376 | v) |
| 2377 | (if (eq x (car v)) (cdr v) '(t))))) | 2377 | (if (eq x (car v)) (cdr v) '(t))))) |
| 2378 | 2378 | ||
| 2379 | ;;; Count number of times X refers to Y. Return NIL for 0 times. | 2379 | ;;; Count number of times X refers to Y. Return nil for 0 times. |
| 2380 | (defun cl-expr-contains (x y) | 2380 | (defun cl-expr-contains (x y) |
| 2381 | (cond ((equal y x) 1) | 2381 | (cond ((equal y x) 1) |
| 2382 | ((and (consp x) (not (memq (car-safe x) '(quote function function*)))) | 2382 | ((and (consp x) (not (memq (car-safe x) '(quote function function*)))) |
diff --git a/lisp/emacs-lisp/elint.el b/lisp/emacs-lisp/elint.el index 32538c45580..0471db3de93 100644 --- a/lisp/emacs-lisp/elint.el +++ b/lisp/emacs-lisp/elint.el | |||
| @@ -214,7 +214,7 @@ Returns the forms." | |||
| 214 | 214 | ||
| 215 | (defun elint-find-next-top-form () | 215 | (defun elint-find-next-top-form () |
| 216 | "Find the next top form from point. | 216 | "Find the next top form from point. |
| 217 | Returns nil if there are no more forms, T otherwise." | 217 | Return nil if there are no more forms, t otherwise." |
| 218 | (parse-partial-sexp (point) (point-max) nil t) | 218 | (parse-partial-sexp (point) (point-max) nil t) |
| 219 | (not (eobp))) | 219 | (not (eobp))) |
| 220 | 220 | ||
diff --git a/lisp/emacs-lisp/elp.el b/lisp/emacs-lisp/elp.el index 0b081b8e901..7c06c7cb1a0 100644 --- a/lisp/emacs-lisp/elp.el +++ b/lisp/emacs-lisp/elp.el | |||
| @@ -177,7 +177,7 @@ functions will be displayed." | |||
| 177 | :group 'elp) | 177 | :group 'elp) |
| 178 | 178 | ||
| 179 | (defcustom elp-recycle-buffers-p t | 179 | (defcustom elp-recycle-buffers-p t |
| 180 | "*Nil says to not recycle the `elp-results-buffer'. | 180 | "*nil says to not recycle the `elp-results-buffer'. |
| 181 | In other words, a new unique buffer is create every time you run | 181 | In other words, a new unique buffer is create every time you run |
| 182 | \\[elp-results]." | 182 | \\[elp-results]." |
| 183 | :type 'boolean | 183 | :type 'boolean |
diff --git a/lisp/emacs-lisp/ewoc.el b/lisp/emacs-lisp/ewoc.el index 66509589467..d870929c21a 100644 --- a/lisp/emacs-lisp/ewoc.el +++ b/lisp/emacs-lisp/ewoc.el | |||
| @@ -375,7 +375,7 @@ Returns nil if NODE is nil or the first element." | |||
| 375 | 375 | ||
| 376 | (defun ewoc-nth (ewoc n) | 376 | (defun ewoc-nth (ewoc n) |
| 377 | "Return the Nth node. | 377 | "Return the Nth node. |
| 378 | N counts from zero. Nil is returned if there is less than N elements. | 378 | N counts from zero. Return nil if there is less than N elements. |
| 379 | If N is negative, return the -(N+1)th last element. | 379 | If N is negative, return the -(N+1)th last element. |
| 380 | Thus, (ewoc-nth dll 0) returns the first node, | 380 | Thus, (ewoc-nth dll 0) returns the first node, |
| 381 | and (ewoc-nth dll -1) returns the last node. | 381 | and (ewoc-nth dll -1) returns the last node. |
diff --git a/lisp/emulation/edt-mapper.el b/lisp/emulation/edt-mapper.el index 7f74ab60f95..1d492d9b59c 100644 --- a/lisp/emulation/edt-mapper.el +++ b/lisp/emulation/edt-mapper.el | |||
| @@ -119,7 +119,7 @@ | |||
| 119 | ;;; Determine Window System, and X Server Vendor (if appropriate). | 119 | ;;; Determine Window System, and X Server Vendor (if appropriate). |
| 120 | ;;; | 120 | ;;; |
| 121 | (defconst edt-x-emacs-p (string-match "XEmacs" emacs-version) | 121 | (defconst edt-x-emacs-p (string-match "XEmacs" emacs-version) |
| 122 | "Non-NIL if we are running XEmacs version 19, or higher.") | 122 | "Non-nil if we are running XEmacs version 19, or higher.") |
| 123 | 123 | ||
| 124 | (defconst edt-emacs-variant (if edt-x-emacs-p "xemacs" "gnu") | 124 | (defconst edt-emacs-variant (if edt-x-emacs-p "xemacs" "gnu") |
| 125 | "Indicates Emacs variant: GNU Emacs or XEmacs \(aka Lucid Emacs\).") | 125 | "Indicates Emacs variant: GNU Emacs or XEmacs \(aka Lucid Emacs\).") |
diff --git a/lisp/emulation/edt.el b/lisp/emulation/edt.el index d54c0bba8cb..48b08ecc1a3 100644 --- a/lisp/emulation/edt.el +++ b/lisp/emulation/edt.el | |||
| @@ -337,7 +337,7 @@ When select mode is inactive, it is set to an empty string.") | |||
| 337 | 337 | ||
| 338 | (defvar edt-default-map-active nil | 338 | (defvar edt-default-map-active nil |
| 339 | "Non-nil indicates that default EDT emulation key bindings are active. | 339 | "Non-nil indicates that default EDT emulation key bindings are active. |
| 340 | Nil means user-defined custom bindings are active.") | 340 | nil means user-defined custom bindings are active.") |
| 341 | 341 | ||
| 342 | (defvar edt-user-map-configured nil | 342 | (defvar edt-user-map-configured nil |
| 343 | "Non-nil indicates that user custom EDT key bindings are configured. | 343 | "Non-nil indicates that user custom EDT key bindings are configured. |
diff --git a/lisp/emulation/tpu-mapper.el b/lisp/emulation/tpu-mapper.el index 39aae2cf2a7..e6a50c074dc 100644 --- a/lisp/emulation/tpu-mapper.el +++ b/lisp/emulation/tpu-mapper.el | |||
| @@ -80,7 +80,7 @@ | |||
| 80 | ;;; Decide whether we're running Lucid Emacs or Emacs itself. | 80 | ;;; Decide whether we're running Lucid Emacs or Emacs itself. |
| 81 | ;;; | 81 | ;;; |
| 82 | (defconst tpu-lucid-emacs19-p (string-match "Lucid" emacs-version) | 82 | (defconst tpu-lucid-emacs19-p (string-match "Lucid" emacs-version) |
| 83 | "Non-NIL if we are running Lucid Emacs version 19.") | 83 | "Non-nil if we are running Lucid Emacs version 19.") |
| 84 | 84 | ||
| 85 | 85 | ||
| 86 | ;;; | 86 | ;;; |
diff --git a/lisp/emulation/ws-mode.el b/lisp/emulation/ws-mode.el index 50340e90785..5441af33044 100644 --- a/lisp/emulation/ws-mode.el +++ b/lisp/emulation/ws-mode.el | |||
| @@ -369,7 +369,7 @@ the distance between the end of the text and `fill-column'." | |||
| 369 | 369 | ||
| 370 | (defvar ws-search-string nil "String of last search in WordStar mode.") | 370 | (defvar ws-search-string nil "String of last search in WordStar mode.") |
| 371 | (defvar ws-search-direction t | 371 | (defvar ws-search-direction t |
| 372 | "Direction of last search in WordStar mode. T if forward, NIL if backward.") | 372 | "Direction of last search in WordStar mode. t if forward, nil if backward.") |
| 373 | 373 | ||
| 374 | (defvar ws-last-cursorposition nil | 374 | (defvar ws-last-cursorposition nil |
| 375 | "Position before last search etc. in WordStar mode.") | 375 | "Position before last search etc. in WordStar mode.") |
diff --git a/lisp/gnus/gnus-art.el b/lisp/gnus/gnus-art.el index 225ef3572b4..e3b560eaa7b 100644 --- a/lisp/gnus/gnus-art.el +++ b/lisp/gnus/gnus-art.el | |||
| @@ -1963,7 +1963,7 @@ Put point at the beginning of the signature separator." | |||
| 1963 | 1963 | ||
| 1964 | (defun gnus-article-check-hidden-text (type arg) | 1964 | (defun gnus-article-check-hidden-text (type arg) |
| 1965 | "Return nil if hiding is necessary. | 1965 | "Return nil if hiding is necessary. |
| 1966 | Arg can be nil or a number. Nil and positive means hide, negative | 1966 | Arg can be nil or a number. nil and positive means hide, negative |
| 1967 | means show, 0 means toggle." | 1967 | means show, 0 means toggle." |
| 1968 | (save-excursion | 1968 | (save-excursion |
| 1969 | (save-restriction | 1969 | (save-restriction |
diff --git a/lisp/gnus/gnus-sum.el b/lisp/gnus/gnus-sum.el index caee55d4785..bc172f4b509 100644 --- a/lisp/gnus/gnus-sum.el +++ b/lisp/gnus/gnus-sum.el | |||
| @@ -5972,7 +5972,7 @@ be displayed." | |||
| 5972 | (unless (eq major-mode 'gnus-summary-mode) | 5972 | (unless (eq major-mode 'gnus-summary-mode) |
| 5973 | (set-buffer gnus-summary-buffer)) | 5973 | (set-buffer gnus-summary-buffer)) |
| 5974 | (let ((article (or article (gnus-summary-article-number))) | 5974 | (let ((article (or article (gnus-summary-article-number))) |
| 5975 | (all-headers (not (not all-headers))) ;Must be T or NIL. | 5975 | (all-headers (not (not all-headers))) ;Must be t or nil. |
| 5976 | gnus-summary-display-article-function) | 5976 | gnus-summary-display-article-function) |
| 5977 | (and (not pseudo) | 5977 | (and (not pseudo) |
| 5978 | (gnus-summary-article-pseudo-p article) | 5978 | (gnus-summary-article-pseudo-p article) |
diff --git a/lisp/gnus/mailcap.el b/lisp/gnus/mailcap.el index 3d0d599b2fa..89a643fa57b 100644 --- a/lisp/gnus/mailcap.el +++ b/lisp/gnus/mailcap.el | |||
| @@ -274,7 +274,7 @@ to return a true or false shell value for the validity.") | |||
| 274 | 274 | ||
| 275 | (defcustom mailcap-download-directory nil | 275 | (defcustom mailcap-download-directory nil |
| 276 | "*Directory to which `mailcap-save-binary-file' downloads files by default. | 276 | "*Directory to which `mailcap-save-binary-file' downloads files by default. |
| 277 | Nil means your home directory." | 277 | nil means your home directory." |
| 278 | :type '(choice (const :tag "Home directory" nil) | 278 | :type '(choice (const :tag "Home directory" nil) |
| 279 | directory) | 279 | directory) |
| 280 | :group 'mailcap) | 280 | :group 'mailcap) |
diff --git a/lisp/gnus/mm-util.el b/lisp/gnus/mm-util.el index afe9f6cdbec..e752bf7ee06 100644 --- a/lisp/gnus/mm-util.el +++ b/lisp/gnus/mm-util.el | |||
| @@ -491,7 +491,7 @@ If the charset is `composition', return the actual one." | |||
| 491 | 491 | ||
| 492 | (defun mm-find-mime-charset-region (b e &optional hack-charsets) | 492 | (defun mm-find-mime-charset-region (b e &optional hack-charsets) |
| 493 | "Return the MIME charsets needed to encode the region between B and E. | 493 | "Return the MIME charsets needed to encode the region between B and E. |
| 494 | Nil means ASCII, a single-element list represents an appropriate MIME | 494 | nil means ASCII, a single-element list represents an appropriate MIME |
| 495 | charset, and a longer list means no appropriate charset." | 495 | charset, and a longer list means no appropriate charset." |
| 496 | (let (charsets) | 496 | (let (charsets) |
| 497 | ;; The return possibilities of this function are a mess... | 497 | ;; The return possibilities of this function are a mess... |
diff --git a/lisp/gnus/nnfolder.el b/lisp/gnus/nnfolder.el index 8ed7a4a5973..8ba41d95072 100644 --- a/lisp/gnus/nnfolder.el +++ b/lisp/gnus/nnfolder.el | |||
| @@ -99,7 +99,7 @@ message, a huge time saver for large mailboxes.") | |||
| 99 | (defvoo nnfolder-file-coding-system mm-text-coding-system) | 99 | (defvoo nnfolder-file-coding-system mm-text-coding-system) |
| 100 | (defvoo nnfolder-file-coding-system-for-write nnheader-file-coding-system | 100 | (defvoo nnfolder-file-coding-system-for-write nnheader-file-coding-system |
| 101 | "Coding system for save nnfolder file. | 101 | "Coding system for save nnfolder file. |
| 102 | If NIL, NNFOLDER-FILE-CODING-SYSTEM is used.") | 102 | If nil, `nnfolder-file-coding-system' is used.") |
| 103 | 103 | ||
| 104 | 104 | ||
| 105 | 105 | ||
diff --git a/lisp/gnus/nnmail.el b/lisp/gnus/nnmail.el index 9234325eac0..ad28361ebd8 100644 --- a/lisp/gnus/nnmail.el +++ b/lisp/gnus/nnmail.el | |||
| @@ -318,7 +318,7 @@ GROUP: Mail will be stored in GROUP (a string). | |||
| 318 | \(FIELD VALUE [- RESTRICT [- RESTRICT [...]]] SPLIT): If the message | 318 | \(FIELD VALUE [- RESTRICT [- RESTRICT [...]]] SPLIT): If the message |
| 319 | field FIELD (a regexp) contains VALUE (a regexp), store the messages | 319 | field FIELD (a regexp) contains VALUE (a regexp), store the messages |
| 320 | as specified by SPLIT. If RESTRICT (a regexp) matches some string | 320 | as specified by SPLIT. If RESTRICT (a regexp) matches some string |
| 321 | after FIELD and before the end of the matched VALUE, return NIL, | 321 | after FIELD and before the end of the matched VALUE, return nil, |
| 322 | otherwise process SPLIT. Multiple RESTRICTs add up, further | 322 | otherwise process SPLIT. Multiple RESTRICTs add up, further |
| 323 | restricting the possibility of processing SPLIT. | 323 | restricting the possibility of processing SPLIT. |
| 324 | 324 | ||
diff --git a/lisp/ls-lisp.el b/lisp/ls-lisp.el index dca1ebbd89c..9f2eb5be2a3 100644 --- a/lisp/ls-lisp.el +++ b/lisp/ls-lisp.el | |||
| @@ -113,7 +113,7 @@ option will have no effect until you restart Emacs." | |||
| 113 | (t '(links uid gid))) ; GNU ls | 113 | (t '(links uid gid))) ; GNU ls |
| 114 | "*A list of optional file attributes that ls-lisp should display. | 114 | "*A list of optional file attributes that ls-lisp should display. |
| 115 | It should contain none or more of the symbols: links, uid, gid. | 115 | It should contain none or more of the symbols: links, uid, gid. |
| 116 | Nil (or an empty list) means display none of them. | 116 | nil (or an empty list) means display none of them. |
| 117 | 117 | ||
| 118 | Concepts come from UNIX: `links' means count of names associated with | 118 | Concepts come from UNIX: `links' means count of names associated with |
| 119 | the file\; `uid' means user (owner) identifier\; `gid' means group | 119 | the file\; `uid' means user (owner) identifier\; `gid' means group |
diff --git a/lisp/mail/feedmail.el b/lisp/mail/feedmail.el index 8a69ae7802d..a7f4a15c982 100644 --- a/lisp/mail/feedmail.el +++ b/lisp/mail/feedmail.el | |||
| @@ -684,7 +684,7 @@ in the saved message if you use Fcc:." | |||
| 684 | 684 | ||
| 685 | (defcustom feedmail-fiddle-headers-upwardly t | 685 | (defcustom feedmail-fiddle-headers-upwardly t |
| 686 | "*Non-nil means fiddled header fields should go at the top of the header. | 686 | "*Non-nil means fiddled header fields should go at the top of the header. |
| 687 | Nil means insert them at the bottom. This is mostly a novelty issue since | 687 | nil means insert them at the bottom. This is mostly a novelty issue since |
| 688 | the standards define the ordering of header fields to be immaterial and it's | 688 | the standards define the ordering of header fields to be immaterial and it's |
| 689 | fairly likely that some MTA along the way will have its own idea of what the | 689 | fairly likely that some MTA along the way will have its own idea of what the |
| 690 | order should be, regardless of what you specify." | 690 | order should be, regardless of what you specify." |
diff --git a/lisp/mail/mh-pick.el b/lisp/mail/mh-pick.el index c00a8d78dda..f49f0d76dbf 100644 --- a/lisp/mail/mh-pick.el +++ b/lisp/mail/mh-pick.el | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | ;;; mh-pick.el --- make a search pattern and search for a message in mh-e | 1 | ;;; mh-pick.el --- make a search pattern and search for a message in mh-e |
| 2 | ;; Time-stamp: <2001-07-14 13:09:34 pavel> | 2 | ;; Time-stamp: <2001-12-20 18:55:31 pavel> |
| 3 | 3 | ||
| 4 | ;; Copyright (C) 1993, 1995 Free Software Foundation, Inc. | 4 | ;; Copyright (C) 1993, 1995 Free Software Foundation, Inc. |
| 5 | 5 | ||
| @@ -26,7 +26,7 @@ | |||
| 26 | 26 | ||
| 27 | ;;; Change Log: | 27 | ;;; Change Log: |
| 28 | 28 | ||
| 29 | ;; $Id: mh-pick.el,v 1.5 1996/01/14 07:34:30 erik Exp $ | 29 | ;; $Id: mh-pick.el,v 1.6 2001/07/15 19:53:53 pj Exp $ |
| 30 | 30 | ||
| 31 | ;;; Code: | 31 | ;;; Code: |
| 32 | 32 | ||
| @@ -154,7 +154,7 @@ Add the messages found to the sequence named `search'." | |||
| 154 | ;; Return the next piece of a pick argument that can be extracted from the | 154 | ;; Return the next piece of a pick argument that can be extracted from the |
| 155 | ;; BUFFER. | 155 | ;; BUFFER. |
| 156 | ;; Return a list like ("--fieldname" "pattern") or ("-search" "bodypat") | 156 | ;; Return a list like ("--fieldname" "pattern") or ("-search" "bodypat") |
| 157 | ;; or NIL if no pieces remain. | 157 | ;; or nil if no pieces remain. |
| 158 | (set-buffer buffer) | 158 | (set-buffer buffer) |
| 159 | (let ((case-fold-search t)) | 159 | (let ((case-fold-search t)) |
| 160 | (cond ((eobp) | 160 | (cond ((eobp) |
diff --git a/lisp/mail/supercite.el b/lisp/mail/supercite.el index e1bac745bfc..a7bf6e7370e 100644 --- a/lisp/mail/supercite.el +++ b/lisp/mail/supercite.el | |||
| @@ -1866,7 +1866,7 @@ entered, regardless of the value of `sc-electric-references-p'. See | |||
| 1866 | 1866 | ||
| 1867 | (defun sc-toggle-var (variable) | 1867 | (defun sc-toggle-var (variable) |
| 1868 | "Boolean toggle VARIABLE's value. | 1868 | "Boolean toggle VARIABLE's value. |
| 1869 | VARIABLE must be a bound symbol. Nil values change to t, non-nil | 1869 | VARIABLE must be a bound symbol. nil values change to t, non-nil |
| 1870 | values are changed to nil." | 1870 | values are changed to nil." |
| 1871 | (message "%s changed from %s to %s" | 1871 | (message "%s changed from %s to %s" |
| 1872 | variable (symbol-value variable) | 1872 | variable (symbol-value variable) |
diff --git a/lisp/msb.el b/lisp/msb.el index 7eb26338373..822b1e40429 100644 --- a/lisp/msb.el +++ b/lisp/msb.el | |||
| @@ -282,7 +282,7 @@ that differs by this value or more." | |||
| 282 | (defcustom msb-max-menu-items 15 | 282 | (defcustom msb-max-menu-items 15 |
| 283 | "*The maximum number of items in a menu. | 283 | "*The maximum number of items in a menu. |
| 284 | If this variable is set to 15 for instance, then the submenu will be | 284 | If this variable is set to 15 for instance, then the submenu will be |
| 285 | split up in minor parts, 15 items each. Nil means no limit." | 285 | split up in minor parts, 15 items each. nil means no limit." |
| 286 | :type '(choice integer (const nil)) | 286 | :type '(choice integer (const nil)) |
| 287 | :set 'msb-custom-set | 287 | :set 'msb-custom-set |
| 288 | :group 'msb) | 288 | :group 'msb) |
diff --git a/lisp/pcvs.el b/lisp/pcvs.el index 82cd661bd02..98db59145ee 100644 --- a/lisp/pcvs.el +++ b/lisp/pcvs.el | |||
| @@ -13,7 +13,7 @@ | |||
| 13 | ;; (Jari Aalto+mail.emacs) jari.aalto@poboxes.com | 13 | ;; (Jari Aalto+mail.emacs) jari.aalto@poboxes.com |
| 14 | ;; Maintainer: (Stefan Monnier) monnier+lists/cvs/pcl@flint.cs.yale.edu | 14 | ;; Maintainer: (Stefan Monnier) monnier+lists/cvs/pcl@flint.cs.yale.edu |
| 15 | ;; Keywords: CVS, version control, release management | 15 | ;; Keywords: CVS, version control, release management |
| 16 | ;; Revision: $Id: pcvs.el,v 1.30 2001/10/30 04:41:28 monnier Exp $ | 16 | ;; Revision: $Id: pcvs.el,v 1.31 2001/12/02 07:40:43 monnier Exp $ |
| 17 | 17 | ||
| 18 | ;; This file is part of GNU Emacs. | 18 | ;; This file is part of GNU Emacs. |
| 19 | 19 | ||
| @@ -2079,7 +2079,7 @@ Sensible values are `cvs-examine', `cvs-status' and `cvs-quickdir'." | |||
| 2079 | ;;;###autoload | 2079 | ;;;###autoload |
| 2080 | (defcustom cvs-dired-use-hook '(4) | 2080 | (defcustom cvs-dired-use-hook '(4) |
| 2081 | "Whether or not opening a CVS directory should run PCL-CVS. | 2081 | "Whether or not opening a CVS directory should run PCL-CVS. |
| 2082 | NIL means never do it. | 2082 | nil means never do it. |
| 2083 | ALWAYS means to always do it unless a prefix argument is given to the | 2083 | ALWAYS means to always do it unless a prefix argument is given to the |
| 2084 | command that prompted the opening of the directory. | 2084 | command that prompted the opening of the directory. |
| 2085 | Anything else means to do it only if the prefix arg is equal to this value." | 2085 | Anything else means to do it only if the prefix arg is equal to this value." |
diff --git a/lisp/play/decipher.el b/lisp/play/decipher.el index 88c9bc043fb..c8c9dbb486f 100644 --- a/lisp/play/decipher.el +++ b/lisp/play/decipher.el | |||
| @@ -100,7 +100,7 @@ | |||
| 100 | 100 | ||
| 101 | (defcustom decipher-force-uppercase t | 101 | (defcustom decipher-force-uppercase t |
| 102 | "*Non-nil means to convert ciphertext to uppercase. | 102 | "*Non-nil means to convert ciphertext to uppercase. |
| 103 | Nil means the case of the ciphertext is preserved. | 103 | nil means the case of the ciphertext is preserved. |
| 104 | This variable must be set before typing `\\[decipher]'." | 104 | This variable must be set before typing `\\[decipher]'." |
| 105 | :type 'boolean | 105 | :type 'boolean |
| 106 | :group 'decipher) | 106 | :group 'decipher) |
diff --git a/lisp/play/mpuz.el b/lisp/play/mpuz.el index c0323610ab1..9d7a1d7a165 100644 --- a/lisp/play/mpuz.el +++ b/lisp/play/mpuz.el | |||
| @@ -39,7 +39,7 @@ | |||
| 39 | (random t) ; randomize | 39 | (random t) ; randomize |
| 40 | 40 | ||
| 41 | (defcustom mpuz-silent nil | 41 | (defcustom mpuz-silent nil |
| 42 | "*Set this to T if you don't want dings on inputs." | 42 | "*Set this to t if you don't want dings on inputs." |
| 43 | :type 'boolean | 43 | :type 'boolean |
| 44 | :group 'mpuz) | 44 | :group 'mpuz) |
| 45 | 45 | ||
diff --git a/lisp/progmodes/ada-mode.el b/lisp/progmodes/ada-mode.el index 4d29dd1650a..7707e50ea3b 100644 --- a/lisp/progmodes/ada-mode.el +++ b/lisp/progmodes/ada-mode.el | |||
| @@ -7,7 +7,7 @@ | |||
| 7 | ;; Markus Heritsch <Markus.Heritsch@studbox.uni-stuttgart.de> | 7 | ;; Markus Heritsch <Markus.Heritsch@studbox.uni-stuttgart.de> |
| 8 | ;; Emmanuel Briot <briot@gnat.com> | 8 | ;; Emmanuel Briot <briot@gnat.com> |
| 9 | ;; Maintainer: Emmanuel Briot <briot@gnat.com> | 9 | ;; Maintainer: Emmanuel Briot <briot@gnat.com> |
| 10 | ;; Ada Core Technologies's version: $Revision: 1.45 $ | 10 | ;; Ada Core Technologies's version: $Revision: 1.46 $ |
| 11 | ;; Keywords: languages ada | 11 | ;; Keywords: languages ada |
| 12 | 12 | ||
| 13 | ;; This file is part of GNU Emacs. | 13 | ;; This file is part of GNU Emacs. |
| @@ -241,7 +241,7 @@ For instance: | |||
| 241 | 241 | ||
| 242 | (defcustom ada-indent-comment-as-code t | 242 | (defcustom ada-indent-comment-as-code t |
| 243 | "*Non-nil means indent comment lines as code. | 243 | "*Non-nil means indent comment lines as code. |
| 244 | Nil means do not auto-indent comments." | 244 | nil means do not auto-indent comments." |
| 245 | :type 'boolean :group 'ada) | 245 | :type 'boolean :group 'ada) |
| 246 | 246 | ||
| 247 | (defcustom ada-indent-is-separate t | 247 | (defcustom ada-indent-is-separate t |
diff --git a/lisp/terminal.el b/lisp/terminal.el index 865b917d20a..303bb695f42 100644 --- a/lisp/terminal.el +++ b/lisp/terminal.el | |||
| @@ -60,7 +60,7 @@ This variable is local to each terminal-emulator buffer." | |||
| 60 | :type 'character | 60 | :type 'character |
| 61 | :group 'terminal) | 61 | :group 'terminal) |
| 62 | 62 | ||
| 63 | (defcustom terminal-scrolling t ;;>> Setting this to T sort-of defeats my whole aim in writing this package... | 63 | (defcustom terminal-scrolling t ;;>> Setting this to t sort-of defeats my whole aim in writing this package... |
| 64 | "*If non-nil, the terminal-emulator will losingly `scroll' when output occurs | 64 | "*If non-nil, the terminal-emulator will losingly `scroll' when output occurs |
| 65 | past the bottom of the screen. If nil, output will win and `wrap' to the top | 65 | past the bottom of the screen. If nil, output will win and `wrap' to the top |
| 66 | of the screen. | 66 | of the screen. |
diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el index 50830816f6d..d12808a9562 100644 --- a/lisp/textmodes/ispell.el +++ b/lisp/textmodes/ispell.el | |||
| @@ -2104,7 +2104,7 @@ scrolling the current window. Leave the new window selected." | |||
| 2104 | ORIGINAL-WORD is a string of the possibly misspelled word. | 2104 | ORIGINAL-WORD is a string of the possibly misspelled word. |
| 2105 | OFFSET is an integer giving the line offset of the word. | 2105 | OFFSET is an integer giving the line offset of the word. |
| 2106 | MISS-LIST and GUESS-LIST are possibly null lists of guesses and misses. | 2106 | MISS-LIST and GUESS-LIST are possibly null lists of guesses and misses. |
| 2107 | 4: Nil when an error has occurred. | 2107 | 4: nil when an error has occurred. |
| 2108 | 2108 | ||
| 2109 | Optional second arg ACCEPT-LIST is list of words already accepted. | 2109 | Optional second arg ACCEPT-LIST is list of words already accepted. |
| 2110 | Optional third arg SHIFT is an offset to apply based on previous corrections." | 2110 | Optional third arg SHIFT is an offset to apply based on previous corrections." |
diff --git a/lisp/vc-cvs.el b/lisp/vc-cvs.el index 9f8a82d432b..6bcf2c77308 100644 --- a/lisp/vc-cvs.el +++ b/lisp/vc-cvs.el | |||
| @@ -5,7 +5,7 @@ | |||
| 5 | ;; Author: FSF (see vc.el for full credits) | 5 | ;; Author: FSF (see vc.el for full credits) |
| 6 | ;; Maintainer: Andre Spiegel <spiegel@gnu.org> | 6 | ;; Maintainer: Andre Spiegel <spiegel@gnu.org> |
| 7 | 7 | ||
| 8 | ;; $Id: vc-cvs.el,v 1.27 2001/11/25 23:52:51 monnier Exp $ | 8 | ;; $Id: vc-cvs.el,v 1.28 2001/11/30 13:47:39 spiegel Exp $ |
| 9 | 9 | ||
| 10 | ;; This file is part of GNU Emacs. | 10 | ;; This file is part of GNU Emacs. |
| 11 | 11 | ||
| @@ -561,7 +561,7 @@ encoded as fractional days." | |||
| 561 | 561 | ||
| 562 | (defun vc-cvs-annotate-time () | 562 | (defun vc-cvs-annotate-time () |
| 563 | "Return the time of the next annotation (as fraction of days) | 563 | "Return the time of the next annotation (as fraction of days) |
| 564 | systime , or NIL if there is none." | 564 | systime, or nil if there is none." |
| 565 | (let ((time-stamp | 565 | (let ((time-stamp |
| 566 | "^\\S-+\\s-+\\S-+\\s-+\\([0-9]+\\)-\\(\\sw+\\)-\\([0-9]+\\)): ")) | 566 | "^\\S-+\\s-+\\S-+\\s-+\\([0-9]+\\)-\\(\\sw+\\)-\\([0-9]+\\)): ")) |
| 567 | (if (looking-at time-stamp) | 567 | (if (looking-at time-stamp) |
diff --git a/src/keymap.c b/src/keymap.c index 33e3244c061..cc70f6331c7 100644 --- a/src/keymap.c +++ b/src/keymap.c | |||
| @@ -1045,7 +1045,7 @@ the front of KEYMAP. */) | |||
| 1045 | } | 1045 | } |
| 1046 | } | 1046 | } |
| 1047 | 1047 | ||
| 1048 | /* Value is number if KEY is too long; NIL if valid but has no definition. */ | 1048 | /* Value is number if KEY is too long; nil if valid but has no definition. */ |
| 1049 | /* GC is possible in this function if it autoloads a keymap. */ | 1049 | /* GC is possible in this function if it autoloads a keymap. */ |
| 1050 | 1050 | ||
| 1051 | DEFUN ("lookup-key", Flookup_key, Slookup_key, 2, 3, 0, | 1051 | DEFUN ("lookup-key", Flookup_key, Slookup_key, 2, 3, 0, |
diff --git a/src/lread.c b/src/lread.c index 80463c1e18e..824e34ae47b 100644 --- a/src/lread.c +++ b/src/lread.c | |||
| @@ -3229,8 +3229,8 @@ defvar_int (namestring, address) | |||
| 3229 | SET_SYMBOL_VALUE (sym, val); | 3229 | SET_SYMBOL_VALUE (sym, val); |
| 3230 | } | 3230 | } |
| 3231 | 3231 | ||
| 3232 | /* Similar but define a variable whose value is T if address contains 1, | 3232 | /* Similar but define a variable whose value is t if address contains 1, |
| 3233 | NIL if address contains 0 */ | 3233 | nil if address contains 0 */ |
| 3234 | void | 3234 | void |
| 3235 | defvar_bool (namestring, address) | 3235 | defvar_bool (namestring, address) |
| 3236 | char *namestring; | 3236 | char *namestring; |
diff --git a/src/w32term.c b/src/w32term.c index 19e51266dac..96b4821a815 100644 --- a/src/w32term.c +++ b/src/w32term.c | |||
| @@ -11113,7 +11113,7 @@ wide as that tab on the display. */); | |||
| 11113 | DEFVAR_BOOL ("x-use-underline-position-properties", | 11113 | DEFVAR_BOOL ("x-use-underline-position-properties", |
| 11114 | &x_use_underline_position_properties, | 11114 | &x_use_underline_position_properties, |
| 11115 | doc: /* *Non-nil means make use of UNDERLINE_POSITION font properties. | 11115 | doc: /* *Non-nil means make use of UNDERLINE_POSITION font properties. |
| 11116 | Nil means ignore them. If you encounter fonts with bogus | 11116 | nil means ignore them. If you encounter fonts with bogus |
| 11117 | UNDERLINE_POSITION font properties, for example 7x13 on XFree prior | 11117 | UNDERLINE_POSITION font properties, for example 7x13 on XFree prior |
| 11118 | to 4.1, set this to nil. */); | 11118 | to 4.1, set this to nil. */); |
| 11119 | x_use_underline_position_properties = 1; | 11119 | x_use_underline_position_properties = 1; |
diff --git a/src/xdisp.c b/src/xdisp.c index 1dd5f0fa985..320075ba49d 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -14952,7 +14952,7 @@ go back to their normal size. */); | |||
| 14952 | DEFVAR_BOOL ("cursor-in-non-selected-windows", | 14952 | DEFVAR_BOOL ("cursor-in-non-selected-windows", |
| 14953 | &cursor_in_non_selected_windows, | 14953 | &cursor_in_non_selected_windows, |
| 14954 | doc: /* *Non-nil means display a hollow cursor in non-selected windows. | 14954 | doc: /* *Non-nil means display a hollow cursor in non-selected windows. |
| 14955 | Nil means don't display a cursor there. */); | 14955 | nil means don't display a cursor there. */); |
| 14956 | cursor_in_non_selected_windows = 1; | 14956 | cursor_in_non_selected_windows = 1; |
| 14957 | 14957 | ||
| 14958 | DEFVAR_BOOL ("automatic-hscrolling", &automatic_hscrolling_p, | 14958 | DEFVAR_BOOL ("automatic-hscrolling", &automatic_hscrolling_p, |
diff --git a/src/xfaces.c b/src/xfaces.c index f1477fdea4c..704a31d9b35 100644 --- a/src/xfaces.c +++ b/src/xfaces.c | |||
| @@ -3330,7 +3330,7 @@ merge_face_vectors (f, from, to, cycle_check) | |||
| 3330 | elements, this macro begins consing in order to keep more precise | 3330 | elements, this macro begins consing in order to keep more precise |
| 3331 | track of elements. | 3331 | track of elements. |
| 3332 | 3332 | ||
| 3333 | Returns NIL if a cycle was detected, otherwise a new value for CHECK | 3333 | Returns nil if a cycle was detected, otherwise a new value for CHECK |
| 3334 | that includes EL. | 3334 | that includes EL. |
| 3335 | 3335 | ||
| 3336 | CHECK is evaluated multiple times, EL and SUSPICIOUS 0 or 1 times, so | 3336 | CHECK is evaluated multiple times, EL and SUSPICIOUS 0 or 1 times, so |
diff --git a/src/xterm.c b/src/xterm.c index 51b94c9fb37..ccc54c7fb14 100644 --- a/src/xterm.c +++ b/src/xterm.c | |||
| @@ -14871,7 +14871,7 @@ wide as that tab on the display. */); | |||
| 14871 | DEFVAR_BOOL ("x-use-underline-position-properties", | 14871 | DEFVAR_BOOL ("x-use-underline-position-properties", |
| 14872 | &x_use_underline_position_properties, | 14872 | &x_use_underline_position_properties, |
| 14873 | doc: /* *Non-nil means make use of UNDERLINE_POSITION font properties. | 14873 | doc: /* *Non-nil means make use of UNDERLINE_POSITION font properties. |
| 14874 | Nil means ignore them. If you encounter fonts with bogus | 14874 | nil means ignore them. If you encounter fonts with bogus |
| 14875 | UNDERLINE_POSITION font properties, for example 7x13 on XFree prior | 14875 | UNDERLINE_POSITION font properties, for example 7x13 on XFree prior |
| 14876 | to 4.1, set this to nil. */); | 14876 | to 4.1, set this to nil. */); |
| 14877 | x_use_underline_position_properties = 1; | 14877 | x_use_underline_position_properties = 1; |