diff options
author | Pavel Janík <Pavel@Janik.cz> | 2001-12-20 19:01:00 +0000 |
---|---|---|
committer | Pavel Janík <Pavel@Janik.cz> | 2001-12-20 19:01:00 +0000 |
commit | f0529b5b1aeb64a7df9765781948a5edbfc80b1e (patch) | |
tree | 158ac5ca37e5347b9cc96ffe5514ab852e3aa8b9 /lisp/emacs-lisp/cl-macs.el | |
parent | 0ff9b955fe8d8032f5c139dcc86990f0177b646f (diff) | |
download | emacs-f0529b5b1aeb64a7df9765781948a5edbfc80b1e.tar.gz |
Doc fix.
Diffstat (limited to 'lisp/emacs-lisp/cl-macs.el')
-rw-r--r-- | lisp/emacs-lisp/cl-macs.el | 2 |
1 files changed, 1 insertions, 1 deletions
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*)))) |