aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2010-01-14 19:59:31 +0100
committerJuanma Barranquero2010-01-14 19:59:31 +0100
commitd1f18ec0920105223d2aecfd838f8b19921e6340 (patch)
treef98090d895340248c119119406b69974d19cf499
parent80cd4bb402cd55d9a7efcdf7a77e83cf1118eb61 (diff)
downloademacs-d1f18ec0920105223d2aecfd838f8b19921e6340.tar.gz
emacs-d1f18ec0920105223d2aecfd838f8b19921e6340.zip
Fix typos in docstrings.
-rw-r--r--lisp/ChangeLog17
-rw-r--r--lisp/cedet/semantic/edit.el16
-rw-r--r--lisp/cedet/srecode/insert.el26
-rw-r--r--lisp/emacs-lisp/eieio-base.el4
-rw-r--r--lisp/find-cmd.el2
-rw-r--r--lisp/org/ChangeLog5
-rw-r--r--lisp/org/org-protocol.el10
-rw-r--r--lisp/progmodes/ada-stmt.el2
-rw-r--r--lisp/progmodes/gdb-ui.el2
-rw-r--r--lisp/textmodes/ispell.el18
-rw-r--r--lisp/vc-arch.el2
-rw-r--r--lisp/window.el10
-rw-r--r--test/ChangeLog6
-rw-r--r--test/cedet/cedet-utests.el4
-rw-r--r--test/cedet/semantic-ia-utest.el4
15 files changed, 77 insertions, 51 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index b74e4c6f9a9..ab4334c8e02 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,22 @@
12010-01-14 Juanma Barranquero <lekktu@gmail.com> 12010-01-14 Juanma Barranquero <lekktu@gmail.com>
2 2
3 * find-cmd.el (find-constituents):
4 * vc-arch.el (vc-arch-root):
5 * window.el (window-body-height, pop-up-frames):
6 * cedet/semantic/edit.el (semantic-reparse-needed-change-hook)
7 (semantic-no-reparse-needed-change-hook):
8 * cedet/srecode/insert.el (srecode-resolve-argument-list)
9 (srecode-template-inserter-blank, srecode-template-inserter-variable)
10 (srecode-template-inserter-ask, srecode-template-inserter-width)
11 (srecode-template-inserter-section-start)
12 (srecode-template-inserter-section-end, srecode-insert-method):
13 * emacs-lisp/eieio-base.el (eieio-singleton, slot-missing):
14 * progmodes/ada-stmt.el (ada-if):
15 * progmodes/gdb-ui.el (gdb-jsonify-buffer):
16 * textmodes/ispell.el (ispell-grep-options, ispell-dictionary-alist)
17 (ispell-encoding8-command, ispell-aspell-supports-utf8)
18 (ispell-last-program-name, ispell-help): Fix typos in docstrings.
19
3 * progmodes/flymake.el (flymake-post-syntax-check): 20 * progmodes/flymake.el (flymake-post-syntax-check):
4 Fix typo in error message. 21 Fix typo in error message.
5 22
diff --git a/lisp/cedet/semantic/edit.el b/lisp/cedet/semantic/edit.el
index c57da3a5aa5..0f18d49b7c3 100644
--- a/lisp/cedet/semantic/edit.el
+++ b/lisp/cedet/semantic/edit.el
@@ -81,15 +81,13 @@ common hook `after-change-functions'.")
81 81
82(defvar semantic-reparse-needed-change-hook nil 82(defvar semantic-reparse-needed-change-hook nil
83 "Hooks run when a user edit is detected as needing a reparse. 83 "Hooks run when a user edit is detected as needing a reparse.
84For language specific hooks, make sure you define this as a local 84For language specific hooks, make sure you define this as a local hook.
85hook. 85Not used yet; part of the next generation reparse mechanism.")
86Not used yet; part of the next generation reparse mechanism")
87 86
88(defvar semantic-no-reparse-needed-change-hook nil 87(defvar semantic-no-reparse-needed-change-hook nil
89 "Hooks run when a user edit is detected as not needing a reparse. 88 "Hooks run when a user edit is detected as not needing a reparse.
90If the hook returns non-nil, then declare that a reparse is needed. 89If the hook returns non-nil, then declare that a reparse is needed.
91For language specific hooks, make sure you define this as a local 90For language specific hooks, make sure you define this as a local hook.
92hook.
93Not used yet; part of the next generation reparse mechanism.") 91Not used yet; part of the next generation reparse mechanism.")
94 92
95(defvar semantic-edits-new-change-hooks nil 93(defvar semantic-edits-new-change-hooks nil
@@ -307,7 +305,7 @@ See `semantic-edits-change-leaf-tag' for details on parents."
307 (semantic-tag-components (car tags))) 305 (semantic-tag-components (car tags)))
308 ;; Ok, we are completely encompassed within the first tag 306 ;; Ok, we are completely encompassed within the first tag
309 ;; entry, AND that tag has children. This means that change 307 ;; entry, AND that tag has children. This means that change
310 ;; occured outside of all children, but inside some tag 308 ;; occurred outside of all children, but inside some tag
311 ;; with children. 309 ;; with children.
312 (if (or (not (semantic-tag-with-position-p (car list-to-search))) 310 (if (or (not (semantic-tag-with-position-p (car list-to-search)))
313 (> start (semantic-tag-end 311 (> start (semantic-tag-end
@@ -751,7 +749,7 @@ This function is for internal use by `semantic-edits-incremental-parser'."
751 749
752;;;; Whitespace change 750;;;; Whitespace change
753 ((and (not tags) (not newf-tags)) 751 ((and (not tags) (not newf-tags))
754 ;; A change that occured outside of any existing tags 752 ;; A change that occurred outside of any existing tags
755 ;; and there are no new tags to replace it. 753 ;; and there are no new tags to replace it.
756 (when semantic-edits-verbose-flag 754 (when semantic-edits-verbose-flag
757 (message "White space changes")) 755 (message "White space changes"))
@@ -760,7 +758,7 @@ This function is for internal use by `semantic-edits-incremental-parser'."
760 758
761;;;; New tags in old whitespace area. 759;;;; New tags in old whitespace area.
762 ((and (not tags) newf-tags) 760 ((and (not tags) newf-tags)
763 ;; A change occured outside existing tags which added 761 ;; A change occurred outside existing tags which added
764 ;; a new tag. We need to splice these tags back 762 ;; a new tag. We need to splice these tags back
765 ;; into the cache at the right place. 763 ;; into the cache at the right place.
766 (semantic-edits-splice-insert newf-tags parent-tag cache-list) 764 (semantic-edits-splice-insert newf-tags parent-tag cache-list)
@@ -775,7 +773,7 @@ This function is for internal use by `semantic-edits-incremental-parser'."
775 773
776;;;; Old tags removed 774;;;; Old tags removed
777 ((and tags (not newf-tags)) 775 ((and tags (not newf-tags))
778 ;; A change occured where pre-existing tags were 776 ;; A change occurred where pre-existing tags were
779 ;; deleted! Remove the tag from the cache. 777 ;; deleted! Remove the tag from the cache.
780 (semantic-edits-splice-remove tags parent-tag cache-list) 778 (semantic-edits-splice-remove tags parent-tag cache-list)
781 779
diff --git a/lisp/cedet/srecode/insert.el b/lisp/cedet/srecode/insert.el
index 4777470d473..1ccd4e8d393 100644
--- a/lisp/cedet/srecode/insert.el
+++ b/lisp/cedet/srecode/insert.el
@@ -201,7 +201,7 @@ Apply anything learned to the dictionary DICT."
201 "Resolve arguments in the argument list ARGS. 201 "Resolve arguments in the argument list ARGS.
202ARGS is a list of symbols, such as :blank, or :file. 202ARGS is a list of symbols, such as :blank, or :file.
203Apply values to DICT. 203Apply values to DICT.
204Optional argument TEMP is the template that is getting it's arguments resolved." 204Optional argument TEMP is the template that is getting its arguments resolved."
205 (let ((fcn nil)) 205 (let ((fcn nil))
206 (while args 206 (while args
207 (setq fcn (intern-soft (concat "srecode-semantic-handle-" 207 (setq fcn (intern-soft (concat "srecode-semantic-handle-"
@@ -334,14 +334,14 @@ occur in your template.")
334 ((key :initform "\r" 334 ((key :initform "\r"
335 :allocation :class 335 :allocation :class
336 :documentation 336 :documentation
337 "The character represeinting this inserter style. 337 "The character representing this inserter style.
338Can't be blank, or it might be used by regular variable insertion.") 338Can't be blank, or it might be used by regular variable insertion.")
339 (where :initform 'begin 339 (where :initform 'begin
340 :initarg :where 340 :initarg :where
341 :documentation 341 :documentation
342 "This should be 'begin or 'end, indicating where to insrt a CR. 342 "This should be 'begin or 'end, indicating where to insert a CR.
343When set to 'begin, it will insert a CR if we are not at 'bol'. 343When set to 'begin, it will insert a CR if we are not at 'bol'.
344When set to 'end it will insert a CR if we are not at 'eol'") 344When set to 'end it will insert a CR if we are not at 'eol'.")
345 ;; @TODO - Add slot and control for the number of blank 345 ;; @TODO - Add slot and control for the number of blank
346 ;; lines before and after point. 346 ;; lines before and after point.
347 ) 347 )
@@ -407,7 +407,7 @@ Arguments ESCAPE-START and ESCAPE-END are the current escape sequences in use."
407 :allocation :class 407 :allocation :class
408 :documentation 408 :documentation
409 "The character code used to identify inserters of this style.")) 409 "The character code used to identify inserters of this style."))
410 "Insert the value of a dictionary entry 410 "Insert the value of a dictionary entry.
411If there is no entry, insert nothing.") 411If there is no entry, insert nothing.")
412 412
413(defvar srecode-inserter-variable-current-dictionary nil 413(defvar srecode-inserter-variable-current-dictionary nil
@@ -493,7 +493,7 @@ If SECONDNAME is nil, return VALUE."
493 :documentation 493 :documentation
494 "The function used to read in the text for this prompt.") 494 "The function used to read in the text for this prompt.")
495 ) 495 )
496 "Insert the value of a dictionary entry 496 "Insert the value of a dictionary entry.
497If there is no entry, prompt the user for the value to use. 497If there is no entry, prompt the user for the value to use.
498The prompt text used is derived from the previous PROMPT command in the 498The prompt text used is derived from the previous PROMPT command in the
499template file.") 499template file.")
@@ -626,8 +626,8 @@ Use DICTIONARY to resolve values."
626 "The character code used to identify inserters of this style.") 626 "The character code used to identify inserters of this style.")
627 ) 627 )
628 "Inserts the value of a dictionary variable with a specific width. 628 "Inserts the value of a dictionary variable with a specific width.
629The second argument specifies the width, and a pad, seperated by a colon. 629The second argument specifies the width, and a pad, separated by a colon.
630thus a specification of `10:left' will insert the value of A 630Thus a specification of `10:left' will insert the value of A
631to 10 characters, with spaces added to the left. Use `right' for adding 631to 10 characters, with spaces added to the left. Use `right' for adding
632spaces to the right.") 632spaces to the right.")
633 633
@@ -771,7 +771,7 @@ Calls back to `srecode-insert-method-helper' for this class."
771 "The character code used to identify inserters of this style.") 771 "The character code used to identify inserters of this style.")
772 (template :initarg :template 772 (template :initarg :template
773 :documentation 773 :documentation
774 "A Template used to frame the codes from this inserter.") 774 "A template used to frame the codes from this inserter.")
775 ) 775 )
776 "Apply values from a sub-dictionary to a template section. 776 "Apply values from a sub-dictionary to a template section.
777The dictionary saved at the named dictionary entry will be 777The dictionary saved at the named dictionary entry will be
@@ -806,7 +806,7 @@ Return the remains of INPUT."
806 :documentation 806 :documentation
807 "The character code used to identify inserters of this style.") 807 "The character code used to identify inserters of this style.")
808 ) 808 )
809 "All template segments between the secion-start and section-end 809 "All template segments between the section-start and section-end
810are treated specially.") 810are treated specially.")
811 811
812(defmethod srecode-insert-method ((sti srecode-template-inserter-section-end) 812(defmethod srecode-insert-method ((sti srecode-template-inserter-section-end)
@@ -881,7 +881,7 @@ this template instance."
881 (setq active (cdr active))) 881 (setq active (cdr active)))
882 (when (not tmpl) 882 (when (not tmpl)
883 ;; If it wasn't in this context, look to see if it 883 ;; If it wasn't in this context, look to see if it
884 ;; defines it's own context 884 ;; defines its own context
885 (setq tmpl (srecode-template-get-table (srecode-table) 885 (setq tmpl (srecode-template-get-table (srecode-table)
886 templatenamepart))) 886 templatenamepart)))
887 ) 887 )
@@ -897,7 +897,7 @@ this template instance."
897 dictionary) 897 dictionary)
898 "Insert the STI inserter. 898 "Insert the STI inserter.
899Finds the template with this macro function part, and inserts it 899Finds the template with this macro function part, and inserts it
900with the dictionaries found in the dictinary." 900with the dictionaries found in the dictionary."
901 (srecode-insert-include-lookup sti dictionary) 901 (srecode-insert-include-lookup sti dictionary)
902 ;; Insert the template. 902 ;; Insert the template.
903 ;; Our baseclass has a simple way to do this. 903 ;; Our baseclass has a simple way to do this.
@@ -952,7 +952,7 @@ Arguments ESCAPE-START and ESCAPE-END are the current escape sequences in use."
952 "Insert the template STI. 952 "Insert the template STI.
953This will first insert the include part via inheritance, then 953This will first insert the include part via inheritance, then
954insert the section it wraps into the location in the included 954insert the section it wraps into the location in the included
955template where a ^ inserter occurs." 955template where a ^ inserter occurs."
956 ;; Step 1: Look up the included inserter 956 ;; Step 1: Look up the included inserter
957 (srecode-insert-include-lookup sti dictionary) 957 (srecode-insert-include-lookup sti dictionary)
958 ;; Step 2: Temporarilly override the point inserter. 958 ;; Step 2: Temporarilly override the point inserter.
diff --git a/lisp/emacs-lisp/eieio-base.el b/lisp/emacs-lisp/eieio-base.el
index 8403171cf16..b573af29ee2 100644
--- a/lisp/emacs-lisp/eieio-base.el
+++ b/lisp/emacs-lisp/eieio-base.el
@@ -150,7 +150,7 @@ Returns the first match."
150 "The only instance of this class that will be instantiated. 150 "The only instance of this class that will be instantiated.
151Multiple calls to `make-instance' will return this object.")) 151Multiple calls to `make-instance' will return this object."))
152 "This special class causes subclasses to be singletons. 152 "This special class causes subclasses to be singletons.
153A singleton is a class which will only ever have one instace." 153A singleton is a class which will only ever have one instance."
154 :abstract t) 154 :abstract t)
155 155
156(defmethod constructor :STATIC ((class eieio-singleton) name &rest slots) 156(defmethod constructor :STATIC ((class eieio-singleton) name &rest slots)
@@ -309,7 +309,7 @@ access to it."
309 309
310(defmethod slot-missing ((obj eieio-named) 310(defmethod slot-missing ((obj eieio-named)
311 slot-name operation &optional new-value) 311 slot-name operation &optional new-value)
312 "Called when a on-existant slot is accessed. 312 "Called when a non-existent slot is accessed.
313For variable `eieio-named', provide an imaginary `object-name' slot. 313For variable `eieio-named', provide an imaginary `object-name' slot.
314Argument OBJ is the named object. 314Argument OBJ is the named object.
315Argument SLOT-NAME is the slot that was attempted to be accessed. 315Argument SLOT-NAME is the slot that was attempted to be accessed.
diff --git a/lisp/find-cmd.el b/lisp/find-cmd.el
index 307964ef17f..11b64b04717 100644
--- a/lisp/find-cmd.el
+++ b/lisp/find-cmd.el
@@ -122,7 +122,7 @@
122 (okdir . (1 find-command t))) 122 (okdir . (1 find-command t)))
123 "Holds details of each of the find options. 123 "Holds details of each of the find options.
124The car of each alist is the name. The cdr is minimum args, the 124The car of each alist is the name. The cdr is minimum args, the
125function used to join many occurences of the argument together, 125function used to join many occurrences of the argument together,
126and whether or not to leave quotes off the string (non-nil means 126and whether or not to leave quotes off the string (non-nil means
127the string will be quoted).") 127the string will be quoted).")
128 128
diff --git a/lisp/org/ChangeLog b/lisp/org/ChangeLog
index 03e52fee5a2..c1eff5a0d25 100644
--- a/lisp/org/ChangeLog
+++ b/lisp/org/ChangeLog
@@ -1,3 +1,8 @@
12010-01-14 Juanma Barranquero <lekktu@gmail.com>
2
3 * org-protocol.el (org-protocol-flatten-greedy, org-protocol-flatten):
4 Fix typos in docstrings.
5
12010-01-01 Juanma Barranquero <lekktu@gmail.com> 62010-01-01 Juanma Barranquero <lekktu@gmail.com>
2 7
3 * org.el (org-get-outline-path, org-speed-command-help): 8 * org.el (org-get-outline-path, org-speed-command-help):
diff --git a/lisp/org/org-protocol.el b/lisp/org/org-protocol.el
index f0c0e302282..59f08f1dfa2 100644
--- a/lisp/org/org-protocol.el
+++ b/lisp/org/org-protocol.el
@@ -355,9 +355,9 @@ encodeURIComponent. E.g. `%C3%B6' is the german Umlaut `ü'."
355 ret )) 355 ret ))
356 356
357(defun org-protocol-flatten-greedy (param-list &optional strip-path replacement) 357(defun org-protocol-flatten-greedy (param-list &optional strip-path replacement)
358 "Greedy handlers might recieve a list like this from emacsclient: 358 "Greedy handlers might receive a list like this from emacsclient:
359 '( (\"/dir/org-protocol:/greedy:/~/path1\" (23 . 12)) (\"/dir/param\") 359 '( (\"/dir/org-protocol:/greedy:/~/path1\" (23 . 12)) (\"/dir/param\")
360where \"/dir/\" is the absolute path to emacsclients working directory. This 360where \"/dir/\" is the absolute path to emacsclients working directory. This
361function transforms it into a flat list utilizing `org-protocol-flatten' and 361function transforms it into a flat list utilizing `org-protocol-flatten' and
362transforms the elements of that list as follows: 362transforms the elements of that list as follows:
363 363
@@ -400,10 +400,10 @@ returned list."
400 400
401 401
402(defun org-protocol-flatten (l) 402(defun org-protocol-flatten (l)
403 "Greedy handlers might recieve a list like this from emacsclient: 403 "Greedy handlers might receive a list like this from emacsclient:
404 '( (\"/dir/org-protocol:/greedy:/~/path1\" (23 . 12)) (\"/dir/param\") 404 '( (\"/dir/org-protocol:/greedy:/~/path1\" (23 . 12)) (\"/dir/param\")
405where \"/dir/\" is the absolute path to emacsclients working directory. This 405where \"/dir/\" is the absolute path to emacsclients working directory.
406function transforms it into a flat list." 406This function transforms it into a flat list."
407 (if (null l) () 407 (if (null l) ()
408 (if (listp l) 408 (if (listp l)
409 (append (org-protocol-flatten (car l)) (org-protocol-flatten (cdr l))) 409 (append (org-protocol-flatten (car l)) (org-protocol-flatten (cdr l)))
diff --git a/lisp/progmodes/ada-stmt.el b/lisp/progmodes/ada-stmt.el
index 91058890d46..103bc093bdb 100644
--- a/lisp/progmodes/ada-stmt.el
+++ b/lisp/progmodes/ada-stmt.el
@@ -187,7 +187,7 @@ Indent for the first line of code."
187 187
188 188
189(define-skeleton ada-if 189(define-skeleton ada-if
190 "Insert skeleton if statment, prompting for a boolean-expression." 190 "Insert skeleton if statement, prompting for a boolean-expression."
191 "[condition]: " 191 "[condition]: "
192 "if " str " then" \n 192 "if " str " then" \n
193 > _ \n 193 > _ \n
diff --git a/lisp/progmodes/gdb-ui.el b/lisp/progmodes/gdb-ui.el
index 9b1f1066d28..4be5cc4511e 100644
--- a/lisp/progmodes/gdb-ui.el
+++ b/lisp/progmodes/gdb-ui.el
@@ -1814,7 +1814,7 @@ happens to be appropriate."
1814Field names are wrapped in double quotes and equal signs are 1814Field names are wrapped in double quotes and equal signs are
1815replaced with semicolons. 1815replaced with semicolons.
1816 1816
1817If FIX-KEY is non-nil, strip all \"FIX-KEY=\" occurences from 1817If FIX-KEY is non-nil, strip all \"FIX-KEY=\" occurrences from
1818partial output. This is used to get rid of useless keys in lists 1818partial output. This is used to get rid of useless keys in lists
1819in MI messages, e.g.: [key=.., key=..]. -stack-list-frames and 1819in MI messages, e.g.: [key=.., key=..]. -stack-list-frames and
1820-break-info are examples of MI commands which issue such 1820-break-info are examples of MI commands which issue such
diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el
index 9775f26de64..e35148ac038 100644
--- a/lisp/textmodes/ispell.el
+++ b/lisp/textmodes/ispell.el
@@ -407,7 +407,7 @@ Always stores Fcc copy of message when nil."
407 (if (memq system-type '(windows-nt ms-dos)) "-Ei" "-i") 407 (if (memq system-type '(windows-nt ms-dos)) "-Ei" "-i")
408 "String of options to use when running the program in `ispell-grep-command'. 408 "String of options to use when running the program in `ispell-grep-command'.
409Should probably be \"-i\" or \"-e\". 409Should probably be \"-i\" or \"-e\".
410Some machines (like the NeXT) don't support \"-i\"" 410Some machines (like the NeXT) don't support \"-i\"."
411 :type 'string 411 :type 'string
412 :group 'ispell) 412 :group 'ispell)
413 413
@@ -729,7 +729,7 @@ can be encoded as \\\"a, a\\\", \"a, ...) Defaults are ~tex and ~nroff
729in English. This has the same effect as the command-line `-T' option. 729in English. This has the same effect as the command-line `-T' option.
730The buffer Major Mode controls Ispell's parsing in tex or nroff mode, 730The buffer Major Mode controls Ispell's parsing in tex or nroff mode,
731but the dictionary can control the extended character mode. 731but the dictionary can control the extended character mode.
732Both defaults can be overruled in a buffer-local fashion. See 732Both defaults can be overruled in a buffer-local fashion. See
733`ispell-parsing-keyword' for details on this. 733`ispell-parsing-keyword' for details on this.
734 734
735CHARACTER-SET used for languages with multibyte characters. 735CHARACTER-SET used for languages with multibyte characters.
@@ -744,7 +744,7 @@ LANGUAGE.aff file \(e.g., english.aff\).")
744 "Command line option prefix to select UTF-8 if supported, nil otherwise. 744 "Command line option prefix to select UTF-8 if supported, nil otherwise.
745If UTF-8 if supported by spellchecker and is selectable from the command line 745If UTF-8 if supported by spellchecker and is selectable from the command line
746this variable will contain \"--encoding=\" for aspell and \"-i \" for hunspell, 746this variable will contain \"--encoding=\" for aspell and \"-i \" for hunspell,
747so UTF-8 or other mime charsets can be selected. That will be set for hunspell 747so UTF-8 or other mime charsets can be selected. That will be set for hunspell
748>=1.1.6 or aspell >= 0.60 in `ispell-check-version'. 748>=1.1.6 or aspell >= 0.60 in `ispell-check-version'.
749 749
750For aspell non-nil means to try to automatically find aspell dictionaries. 750For aspell non-nil means to try to automatically find aspell dictionaries.
@@ -752,9 +752,9 @@ Earlier aspell versions do not consistently support UTF-8. Handling
752this would require some extra guessing in `ispell-aspell-find-dictionary'.") 752this would require some extra guessing in `ispell-aspell-find-dictionary'.")
753 753
754(defvar ispell-aspell-supports-utf8 nil 754(defvar ispell-aspell-supports-utf8 nil
755 "Non nil if aspell has consistent command line UTF-8 support. Obsolete. 755 "Non nil if aspell has consistent command line UTF-8 support. Obsolete.
756ispell.el and flyspell.el will use for this purpose the more generic 756ispell.el and flyspell.el will use for this purpose the more generic
757variable `ispell-encoding8-command' for both aspell and hunspell. Is left 757variable `ispell-encoding8-command' for both aspell and hunspell. Is left
758here just for backwards compatibility.") 758here just for backwards compatibility.")
759 759
760(make-obsolete-variable 'ispell-aspell-supports-utf8 760(make-obsolete-variable 'ispell-aspell-supports-utf8
@@ -1048,7 +1048,7 @@ Return the new dictionary alist."
1048;; Set params according to the selected spellchecker 1048;; Set params according to the selected spellchecker
1049 1049
1050(defvar ispell-last-program-name nil 1050(defvar ispell-last-program-name nil
1051 "Last value of `ispell-program-name'. Internal use.") 1051 "Last value of `ispell-program-name'. Internal use.")
1052 1052
1053(defvar ispell-initialize-spellchecker-hook nil 1053(defvar ispell-initialize-spellchecker-hook nil
1054 "Normal hook run on spellchecker initialization. 1054 "Normal hook run on spellchecker initialization.
@@ -1956,7 +1956,7 @@ Global `ispell-quit' set to start location to continue spell session."
1956 ;; If the user types C-g, or generates some other 1956 ;; If the user types C-g, or generates some other
1957 ;; non-character event (such as a frame switch 1957 ;; non-character event (such as a frame switch
1958 ;; event), stop ispell. As a special exception, 1958 ;; event), stop ispell. As a special exception,
1959 ;; ignore mouse events occuring in the same frame. 1959 ;; ignore mouse events occurring in the same frame.
1960 (while (and input-valid (not (characterp char))) 1960 (while (and input-valid (not (characterp char)))
1961 (setq char (read-key)) 1961 (setq char (read-key))
1962 (setq input-valid 1962 (setq input-valid
@@ -2184,7 +2184,7 @@ SPC: Accept word this time.
2184`a': Accept word for this session. 2184`a': Accept word for this session.
2185`A': Accept word and place in `buffer-local dictionary'. 2185`A': Accept word and place in `buffer-local dictionary'.
2186`r': Replace word with typed-in value. Rechecked. 2186`r': Replace word with typed-in value. Rechecked.
2187`R': Replace word with typed-in value. Query-replaced in buffer. Rechecked. 2187`R': Replace word with typed-in value. Query-replaced in buffer. Rechecked.
2188`?': Show these commands. 2188`?': Show these commands.
2189`x': Exit spelling buffer. Move cursor to original point. 2189`x': Exit spelling buffer. Move cursor to original point.
2190`X': Exit spelling buffer. Leaves cursor at the current point, and permits 2190`X': Exit spelling buffer. Leaves cursor at the current point, and permits
@@ -2216,7 +2216,7 @@ SPC: Accept word this time.
2216`a': Accept word for this session. 2216`a': Accept word for this session.
2217`A': Accept word and place in `buffer-local dictionary'. 2217`A': Accept word and place in `buffer-local dictionary'.
2218`r': Replace word with typed-in value. Rechecked. 2218`r': Replace word with typed-in value. Rechecked.
2219`R': Replace word with typed-in value. Query-replaced in buffer. Rechecked. 2219`R': Replace word with typed-in value. Query-replaced in buffer. Rechecked.
2220`?': Show these commands. 2220`?': Show these commands.
2221`x': Exit spelling buffer. Move cursor to original point. 2221`x': Exit spelling buffer. Move cursor to original point.
2222`X': Exit spelling buffer. Leaves cursor at the current point, and permits 2222`X': Exit spelling buffer. Leaves cursor at the current point, and permits
diff --git a/lisp/vc-arch.el b/lisp/vc-arch.el
index 84218911090..b99c3de6875 100644
--- a/lisp/vc-arch.el
+++ b/lisp/vc-arch.el
@@ -213,7 +213,7 @@ Only the value `maybe' can be trusted :-(."
213 'names)))) 213 'names))))
214 214
215(defun vc-arch-root (file) 215(defun vc-arch-root (file)
216 "Return the root directory of a Arch project, if any." 216 "Return the root directory of an Arch project, if any."
217 (or (vc-file-getprop file 'arch-root) 217 (or (vc-file-getprop file 'arch-root)
218 ;; Check the =tagging-method, in case someone naively manually 218 ;; Check the =tagging-method, in case someone naively manually
219 ;; creates a {arch} directory somewhere. 219 ;; creates a {arch} directory somewhere.
diff --git a/lisp/window.el b/lisp/window.el
index ac4203a7991..41a5d17321f 100644
--- a/lisp/window.el
+++ b/lisp/window.el
@@ -77,9 +77,9 @@ WINDOW defaults to the selected window.
77 77
78The return value does not include the mode line or the header 78The return value does not include the mode line or the header
79line, if any. If a line at the bottom of the window is only 79line, if any. If a line at the bottom of the window is only
80partially visible, that line is included in the return value. If 80partially visible, that line is included in the return value.
81you do not want to include a partially visible bottom line in the 81If you do not want to include a partially visible bottom line
82return value, use `window-text-height' instead." 82in the return value, use `window-text-height' instead."
83 (or window (setq window (selected-window))) 83 (or window (setq window (selected-window)))
84 (if (window-minibuffer-p window) 84 (if (window-minibuffer-p window)
85 (window-height window) 85 (window-height window)
@@ -785,7 +785,7 @@ selected rather than \(as usual\) some other window. See
785 785
786(defcustom pop-up-frames nil 786(defcustom pop-up-frames nil
787 "Whether `display-buffer' should make a separate frame. 787 "Whether `display-buffer' should make a separate frame.
788If nil, never make a seperate frame. 788If nil, never make a separate frame.
789If the value is `graphic-only', make a separate frame 789If the value is `graphic-only', make a separate frame
790on graphic displays only. 790on graphic displays only.
791Any other non-nil value means always make a separate frame." 791Any other non-nil value means always make a separate frame."
@@ -1006,7 +1006,7 @@ is higher than WINDOW."
1006 (not (eq window (selected-window))) 1006 (not (eq window (selected-window)))
1007 ;; Don't resize minibuffer windows. 1007 ;; Don't resize minibuffer windows.
1008 (not (window-minibuffer-p (selected-window))) 1008 (not (window-minibuffer-p (selected-window)))
1009 (> (window-height (selected-window)) (window-height window)) 1009 (> (window-height (selected-window)) (window-height window))
1010 (eq (window-frame window) (window-frame (selected-window))) 1010 (eq (window-frame window) (window-frame (selected-window)))
1011 (let ((sel-edges (window-edges (selected-window))) 1011 (let ((sel-edges (window-edges (selected-window)))
1012 (win-edges (window-edges window))) 1012 (win-edges (window-edges window)))
diff --git a/test/ChangeLog b/test/ChangeLog
index c5d2b7efeed..e52559399e5 100644
--- a/test/ChangeLog
+++ b/test/ChangeLog
@@ -1,3 +1,9 @@
12010-01-14 Juanma Barranquero <lekktu@gmail.com>
2
3 * cedet/cedet-utests.el (cedet-utest-log-shutdown, pulse-test):
4 * cedet/semantic-ia-utest.el (semantic-ia-utest-error-log-list)
5 (semantic-ia-utest-buffer-refs): Fix typos in docstrings.
6
12009-12-18 Ulf Jasper <ulf.jasper@web.de> 72009-12-18 Ulf Jasper <ulf.jasper@web.de>
2 8
3 * icalendar-testsuite.el 9 * icalendar-testsuite.el
diff --git a/test/cedet/cedet-utests.el b/test/cedet/cedet-utests.el
index 12f81488031..aab07d49472 100644
--- a/test/cedet/cedet-utests.el
+++ b/test/cedet/cedet-utests.el
@@ -236,7 +236,7 @@ Argument START and END bound the time being calculated."
236(defun cedet-utest-log-shutdown (title &optional errorcondition) 236(defun cedet-utest-log-shutdown (title &optional errorcondition)
237 "Shut-down a larger test suite. 237 "Shut-down a larger test suite.
238TITLE is the section that is done. 238TITLE is the section that is done.
239ERRORCONDITION is some error that may have occured durinig testing." 239ERRORCONDITION is some error that may have occurred during testing."
240 (let ((endtime (current-time)) 240 (let ((endtime (current-time))
241 ) 241 )
242 (cedet-utest-log-shutdown-msg title cedet-utest-log-timer endtime) 242 (cedet-utest-log-shutdown-msg title cedet-utest-log-timer endtime)
@@ -466,7 +466,7 @@ converted into.")
466 466
467(defun pulse-test (&optional no-error) 467(defun pulse-test (&optional no-error)
468 "Test the lightening function for pulsing a line. 468 "Test the lightening function for pulsing a line.
469When optional NO-ERROR Don't throw an error if we can't run tests." 469When optional NO-ERROR don't throw an error if we can't run tests."
470 (interactive) 470 (interactive)
471 (if (or (not pulse-flag) (not (pulse-available-p))) 471 (if (or (not pulse-flag) (not (pulse-available-p)))
472 (if no-error 472 (if no-error
diff --git a/test/cedet/semantic-ia-utest.el b/test/cedet/semantic-ia-utest.el
index 99477402de6..8e2aa43bd27 100644
--- a/test/cedet/semantic-ia-utest.el
+++ b/test/cedet/semantic-ia-utest.el
@@ -54,7 +54,7 @@
54 "List of files with analyzer completion test points.") 54 "List of files with analyzer completion test points.")
55 55
56(defvar semantic-ia-utest-error-log-list nil 56(defvar semantic-ia-utest-error-log-list nil
57 "List of errors occuring during a run.") 57 "List of errors occurring during a run.")
58 58
59;;;###autoload 59;;;###autoload
60(defun semantic-ia-utest (&optional arg) 60(defun semantic-ia-utest (&optional arg)
@@ -211,7 +211,7 @@ Argument ARG specifies which set of tests to run.
211 )) 211 ))
212 212
213(defun semantic-ia-utest-buffer-refs () 213(defun semantic-ia-utest-buffer-refs ()
214 "Run a analyze-refs unit-test pass in the current buffer." 214 "Run an analyze-refs unit-test pass in the current buffer."
215 215
216 (let* ((idx 1) 216 (let* ((idx 1)
217 (regex-p nil) 217 (regex-p nil)