aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2002-07-14 15:26:01 +0000
committerRichard M. Stallman2002-07-14 15:26:01 +0000
commit79796334502ac98badad37bb1882facf3e99c92c (patch)
treead96207d0fdd70345e7d5ee36b99f2d6c5ee6ca6
parent266e712ee52914a025530af26c3392e07611ad6b (diff)
downloademacs-79796334502ac98badad37bb1882facf3e99c92c.tar.gz
emacs-79796334502ac98badad37bb1882facf3e99c92c.zip
Fix doc typos.
-rw-r--r--lisp/emacs-lisp/checkdoc.el12
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/emacs-lisp/checkdoc.el b/lisp/emacs-lisp/checkdoc.el
index f6ff3667f22..98366036ca2 100644
--- a/lisp/emacs-lisp/checkdoc.el
+++ b/lisp/emacs-lisp/checkdoc.el
@@ -301,7 +301,7 @@ variable `checkdoc-common-verbs-wrong-voice' if you wish to add your own."
301 :type 'boolean) 301 :type 'boolean)
302 302
303(defvar checkdoc-generate-compile-warnings-flag nil 303(defvar checkdoc-generate-compile-warnings-flag nil
304 "Non-nil means generage warnings in a buffer for browsing. 304 "Non-nil means generate warnings in a buffer for browsing.
305Do not set this by hand, use a function like `checkdoc-current-buffer' 305Do not set this by hand, use a function like `checkdoc-current-buffer'
306with a universal argument.") 306with a universal argument.")
307 307
@@ -461,8 +461,8 @@ be re-created.")
461;; 461;;
462;;;###autoload 462;;;###autoload
463(defun checkdoc () 463(defun checkdoc ()
464 "Interactivly check the entire buffer for style errors. 464 "Interactively check the entire buffer for style errors.
465The current status of the ckeck will be displayed in a buffer which 465The current status of the check will be displayed in a buffer which
466the users will view as each check is completed." 466the users will view as each check is completed."
467 (interactive) 467 (interactive)
468 (let ((status (list "Checking..." "-" "-" "-")) 468 (let ((status (list "Checking..." "-" "-" "-"))
@@ -510,7 +510,7 @@ the users will view as each check is completed."
510(defun checkdoc-display-status-buffer (check) 510(defun checkdoc-display-status-buffer (check)
511 "Display and update the status buffer for the current checkdoc mode. 511 "Display and update the status buffer for the current checkdoc mode.
512CHECK is a vector stating the current status of each test as an 512CHECK is a vector stating the current status of each test as an
513element is the status of that level of teset." 513element is the status of that level of test."
514 (let (temp-buffer-setup-hook) 514 (let (temp-buffer-setup-hook)
515 (with-output-to-temp-buffer " *Checkdoc Status*" 515 (with-output-to-temp-buffer " *Checkdoc Status*"
516 (princ-list 516 (princ-list
@@ -556,9 +556,9 @@ checkdoc status window instead of the usual behavior."
556 'checkdoc-next-message-error))) 556 'checkdoc-next-message-error)))
557 557
558(defun checkdoc-interactive-loop (start-here showstatus findfunc) 558(defun checkdoc-interactive-loop (start-here showstatus findfunc)
559 "Interactivly loop over all errors that can be found by a given method. 559 "Interactively loop over all errors that can be found by a given method.
560Searching starts at START-HERE. SHOWSTATUS expresses the verbosity 560Searching starts at START-HERE. SHOWSTATUS expresses the verbosity
561of the search, and wether ending the search will auto-exit this function. 561of the search, and whether ending the search will auto-exit this function.
562FINDFUNC is a symbol representing a function that will position the 562FINDFUNC is a symbol representing a function that will position the
563cursor, and return error message text to present to the user. It is 563cursor, and return error message text to present to the user. It is
564assumed that the cursor will stop just before a major sexp, which will 564assumed that the cursor will stop just before a major sexp, which will