summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorPavel Janík <Pavel@Janik.cz>2001-12-20 19:01:00 +0000
committerPavel Janík <Pavel@Janik.cz>2001-12-20 19:01:00 +0000
commitf0529b5b1aeb64a7df9765781948a5edbfc80b1e (patch)
tree158ac5ca37e5347b9cc96ffe5514ab852e3aa8b9 /lisp/emacs-lisp
parent0ff9b955fe8d8032f5c139dcc86990f0177b646f (diff)
downloademacs-f0529b5b1aeb64a7df9765781948a5edbfc80b1e.tar.gz
emacs-f0529b5b1aeb64a7df9765781948a5edbfc80b1e.tar.bz2
emacs-f0529b5b1aeb64a7df9765781948a5edbfc80b1e.zip
Doc fix.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/byte-opt.el2
-rw-r--r--lisp/emacs-lisp/cl-macs.el2
-rw-r--r--lisp/emacs-lisp/elint.el2
-rw-r--r--lisp/emacs-lisp/elp.el2
-rw-r--r--lisp/emacs-lisp/ewoc.el2
5 files changed, 5 insertions, 5 deletions
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 @@
(defun disassemble-offset ()
"Don't call this!"
;; fetch and return the offset for the current opcode.
- ;; return NIL if this opcode has no offset
+ ;; return nil if this opcode has no offset
;; OP, PTR and BYTES are used and set dynamically
(defvar op)
(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."
v)
(if (eq x (car v)) (cdr v) '(t)))))
-;;; Count number of times X refers to Y. Return NIL for 0 times.
+;;; Count number of times X refers to Y. Return nil for 0 times.
(defun cl-expr-contains (x y)
(cond ((equal y x) 1)
((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."
(defun elint-find-next-top-form ()
"Find the next top form from point.
-Returns nil if there are no more forms, T otherwise."
+Return nil if there are no more forms, t otherwise."
(parse-partial-sexp (point) (point-max) nil t)
(not (eobp)))
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."
:group 'elp)
(defcustom elp-recycle-buffers-p t
- "*Nil says to not recycle the `elp-results-buffer'.
+ "*nil says to not recycle the `elp-results-buffer'.
In other words, a new unique buffer is create every time you run
\\[elp-results]."
: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."
(defun ewoc-nth (ewoc n)
"Return the Nth node.
-N counts from zero. Nil is returned if there is less than N elements.
+N counts from zero. Return nil if there is less than N elements.
If N is negative, return the -(N+1)th last element.
Thus, (ewoc-nth dll 0) returns the first node,
and (ewoc-nth dll -1) returns the last node.