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/elint.el | |
parent | 0ff9b955fe8d8032f5c139dcc86990f0177b646f (diff) | |
download | emacs-f0529b5b1aeb64a7df9765781948a5edbfc80b1e.tar.gz emacs-f0529b5b1aeb64a7df9765781948a5edbfc80b1e.tar.bz2 emacs-f0529b5b1aeb64a7df9765781948a5edbfc80b1e.zip |
Doc fix.
Diffstat (limited to 'lisp/emacs-lisp/elint.el')
-rw-r--r-- | lisp/emacs-lisp/elint.el | 2 |
1 files changed, 1 insertions, 1 deletions
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))) |