diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2010-02-14 18:28:10 +0100 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2010-02-14 18:28:10 +0100 |
commit | fa5f7c5f63979de761dc3aa6ae232aa4b97b7663 (patch) | |
tree | 0c8b37a1dff67c268e872e7c06d63abd6209e5e6 /lisp/emacs-lisp/elint.el | |
parent | ecbaeb7bf5fd06f67347240a19b054a7a3698708 (diff) | |
download | emacs-fa5f7c5f63979de761dc3aa6ae232aa4b97b7663.tar.gz |
Fix typos in docstrings.
* outline.el (outline-head-from-level):
* simple.el (with-wrapper-hook):
* cedet/ede.el (ede-run-target, project-delete-target)
(project-dist-files, ede-name, ede-documentation, ede-parent-project)
(ede-adebug-project, ede-adebug-project-parent)
(ede-adebug-project-root):
* emacs-lisp/elint.el (elint-extra-errors, elint-current-buffer)
(elint-defun, elint-buffer-env, elint-top-form-logged)
(elint-unbound-variable):
* textmodes/reftex-toc.el (reftex-toc-newhead-from-alist):
Diffstat (limited to 'lisp/emacs-lisp/elint.el')
-rw-r--r-- | lisp/emacs-lisp/elint.el | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/emacs-lisp/elint.el b/lisp/emacs-lisp/elint.el index de2a05fb46d..6e0758680d5 100644 --- a/lisp/emacs-lisp/elint.el +++ b/lisp/emacs-lisp/elint.el @@ -147,7 +147,7 @@ Set by `elint-initialize', if `elint-scan-preloaded' is non-nil.") "Those built-ins for which we can't find arguments, if any.") (defvar elint-extra-errors '(file-locked file-supersession ftp-error) - "Errors without error-message or error-confitions properties.") + "Errors without `error-message' or `error-conditions' properties.") (defconst elint-preloaded-skip-re (regexp-opt '("loaddefs.el" "loadup.el" "cus-start" "language/" @@ -289,7 +289,7 @@ A complicated directory may require a lot of memory." ;;;###autoload (defun elint-current-buffer () "Lint the current buffer. -If necessary, this first calls `elint-initalize'." +If necessary, this first calls `elint-initialize'." (interactive) (or elint-builtin-variables (elint-initialize)) @@ -308,7 +308,7 @@ If necessary, this first calls `elint-initalize'." ;;;###autoload (defun elint-defun () "Lint the function at point. -If necessary, this first calls `elint-initalize'." +If necessary, this first calls `elint-initialize'." (interactive) (or elint-builtin-variables (elint-initialize)) @@ -325,7 +325,7 @@ If necessary, this first calls `elint-initalize'." ;;; (defvar elint-buffer-env nil - "The environment of a elisp buffer. + "The environment of an elisp buffer. Will be local in linted buffers.") (defvar elint-buffer-forms nil @@ -528,7 +528,7 @@ Return nil if there are no more forms, t otherwise." "The currently linted top form, or nil.") (defvar elint-top-form-logged nil - "T if the currently linted top form has been mentioned in the log buffer.") + "The value t if the currently linted top form has been mentioned in the log buffer.") (defun elint-top-form (form) "Lint a top FORM." @@ -640,7 +640,7 @@ Returns the environment created by the form." "Name of a temporarily bound symbol.") (defun elint-unbound-variable (var env) - "T if VAR is unbound in ENV." + "Return t if VAR is unbound in ENV." ;; #1063 suggests adding (symbol-file var) here, but I don't think ;; this is right, because it depends on what files you happen to have ;; loaded at the time, which might not be the same when the code runs. |