diff options
| author | Paul Eggert | 2011-11-22 23:03:56 -0800 |
|---|---|---|
| committer | Paul Eggert | 2011-11-22 23:03:56 -0800 |
| commit | ee7683ebb70c308e596103e379ef6b91d001eebc (patch) | |
| tree | 45382191619e27df7106a8d990bc03903d0fa03f /lisp/cedet | |
| parent | 6b21de180fba10432988d94d2b8f3e2521be5b17 (diff) | |
| download | emacs-ee7683ebb70c308e596103e379ef6b91d001eebc.tar.gz emacs-ee7683ebb70c308e596103e379ef6b91d001eebc.zip | |
Spelling fixes.
Diffstat (limited to 'lisp/cedet')
| -rw-r--r-- | lisp/cedet/semantic.el | 2 | ||||
| -rw-r--r-- | lisp/cedet/semantic/analyze.el | 2 | ||||
| -rw-r--r-- | lisp/cedet/semantic/analyze/fcn.el | 2 | ||||
| -rw-r--r-- | lisp/cedet/semantic/complete.el | 2 | ||||
| -rw-r--r-- | lisp/cedet/semantic/ia-sb.el | 2 | ||||
| -rw-r--r-- | lisp/cedet/semantic/lex-spp.el | 2 | ||||
| -rw-r--r-- | lisp/cedet/semantic/sort.el | 2 | ||||
| -rw-r--r-- | lisp/cedet/semantic/symref.el | 2 | ||||
| -rw-r--r-- | lisp/cedet/semantic/symref/list.el | 2 | ||||
| -rw-r--r-- | lisp/cedet/srecode/texi.el | 2 |
10 files changed, 10 insertions, 10 deletions
diff --git a/lisp/cedet/semantic.el b/lisp/cedet/semantic.el index 3ffb6baee9f..3355ed83a91 100644 --- a/lisp/cedet/semantic.el +++ b/lisp/cedet/semantic.el | |||
| @@ -437,7 +437,7 @@ RETURNONERROR specifies that parsing should stop on the first | |||
| 437 | unmatched syntax encountered. When nil, parsing skips the syntax, | 437 | unmatched syntax encountered. When nil, parsing skips the syntax, |
| 438 | adding it to the unmatched syntax cache. | 438 | adding it to the unmatched syntax cache. |
| 439 | 439 | ||
| 440 | Must return a list of semantic tags wich have been cooked | 440 | Must return a list of semantic tags which have been cooked |
| 441 | \(repositioned properly) but which DO NOT HAVE OVERLAYS associated | 441 | \(repositioned properly) but which DO NOT HAVE OVERLAYS associated |
| 442 | with them. When overloading this function, use `semantic--tag-expand' | 442 | with them. When overloading this function, use `semantic--tag-expand' |
| 443 | to cook raw tags.") | 443 | to cook raw tags.") |
diff --git a/lisp/cedet/semantic/analyze.el b/lisp/cedet/semantic/analyze.el index ae199703c80..c275ba96ee4 100644 --- a/lisp/cedet/semantic/analyze.el +++ b/lisp/cedet/semantic/analyze.el | |||
| @@ -254,7 +254,7 @@ Optional argument THROWSYM specifies a symbol the throw on non-recoverable error | |||
| 254 | (fname nil) | 254 | (fname nil) |
| 255 | (miniscope (when scope (clone scope))) | 255 | (miniscope (when scope (clone scope))) |
| 256 | ) | 256 | ) |
| 257 | ;; First order check. Is this wholely contained in the typecache? | 257 | ;; First order check. Is this wholly contained in the typecache? |
| 258 | (setq tmp (semanticdb-typecache-find sequence)) | 258 | (setq tmp (semanticdb-typecache-find sequence)) |
| 259 | 259 | ||
| 260 | (if tmp | 260 | (if tmp |
diff --git a/lisp/cedet/semantic/analyze/fcn.el b/lisp/cedet/semantic/analyze/fcn.el index eae6d013400..967e5c59cda 100644 --- a/lisp/cedet/semantic/analyze/fcn.el +++ b/lisp/cedet/semantic/analyze/fcn.el | |||
| @@ -157,7 +157,7 @@ Almost all searches use the same arguments." | |||
| 157 | ;; | 157 | ;; |
| 158 | 158 | ||
| 159 | (define-overloadable-function semantic-analyze-dereference-metatype (type scope &optional type-declaration) | 159 | (define-overloadable-function semantic-analyze-dereference-metatype (type scope &optional type-declaration) |
| 160 | ;; todo - move into typecahe!! | 160 | ;; todo - move into typecache!! |
| 161 | "Return a concrete type tag based on input TYPE tag. | 161 | "Return a concrete type tag based on input TYPE tag. |
| 162 | A concrete type is an actual declaration of a memory description, | 162 | A concrete type is an actual declaration of a memory description, |
| 163 | such as a structure, or class. A meta type is an alias, | 163 | such as a structure, or class. A meta type is an alias, |
diff --git a/lisp/cedet/semantic/complete.el b/lisp/cedet/semantic/complete.el index aaec4cb30ff..7e01b88f60b 100644 --- a/lisp/cedet/semantic/complete.el +++ b/lisp/cedet/semantic/complete.el | |||
| @@ -1023,7 +1023,7 @@ Output must be in semanticdb Find result format." | |||
| 1023 | 1023 | ||
| 1024 | (defmethod semantic-collector-try-completion-whitespace | 1024 | (defmethod semantic-collector-try-completion-whitespace |
| 1025 | ((obj semantic-collector-abstract) prefix) | 1025 | ((obj semantic-collector-abstract) prefix) |
| 1026 | "For OBJ, do whatepsace completion based on PREFIX. | 1026 | "For OBJ, do whitespace completion based on PREFIX. |
| 1027 | This implies that if there are two completions, one matching | 1027 | This implies that if there are two completions, one matching |
| 1028 | the test \"prefix\\>\", and one not, the one matching the full | 1028 | the test \"prefix\\>\", and one not, the one matching the full |
| 1029 | word version of PREFIX will be chosen, and that text returned. | 1029 | word version of PREFIX will be chosen, and that text returned. |
diff --git a/lisp/cedet/semantic/ia-sb.el b/lisp/cedet/semantic/ia-sb.el index 95a68673b8c..edd62cc5ca5 100644 --- a/lisp/cedet/semantic/ia-sb.el +++ b/lisp/cedet/semantic/ia-sb.el | |||
| @@ -348,7 +348,7 @@ TEXT TAG and INDENT are the details." | |||
| 348 | (insert (semantic-tag-name tag)) | 348 | (insert (semantic-tag-name tag)) |
| 349 | (if movepoint (setq movepoint (point))) | 349 | (if movepoint (setq movepoint (point))) |
| 350 | ;; I'd like to use this to add fancy () or what not at the end | 350 | ;; I'd like to use this to add fancy () or what not at the end |
| 351 | ;; but we need the parent file whih requires an upgrade to the | 351 | ;; but we need the parent file which requires an upgrade to the |
| 352 | ;; analysis tool. | 352 | ;; analysis tool. |
| 353 | ;;(semantic-insert-foreign-tag tag ??)) | 353 | ;;(semantic-insert-foreign-tag tag ??)) |
| 354 | ) | 354 | ) |
diff --git a/lisp/cedet/semantic/lex-spp.el b/lisp/cedet/semantic/lex-spp.el index 03a3f1b0cb1..9cbea4430e0 100644 --- a/lisp/cedet/semantic/lex-spp.el +++ b/lisp/cedet/semantic/lex-spp.el | |||
| @@ -452,7 +452,7 @@ continue processing recursively." | |||
| 452 | ;; If val is nil, that's probably wrong. | 452 | ;; If val is nil, that's probably wrong. |
| 453 | ;; Found a system header case where this was true. | 453 | ;; Found a system header case where this was true. |
| 454 | ((null val) "") | 454 | ((null val) "") |
| 455 | ;; Debug wierd stuff. | 455 | ;; Debug weird stuff. |
| 456 | (t (debug))) | 456 | (t (debug))) |
| 457 | )) | 457 | )) |
| 458 | ((stringp txt) | 458 | ((stringp txt) |
diff --git a/lisp/cedet/semantic/sort.el b/lisp/cedet/semantic/sort.el index c3d8b26810c..a4126e1384b 100644 --- a/lisp/cedet/semantic/sort.el +++ b/lisp/cedet/semantic/sort.el | |||
| @@ -229,7 +229,7 @@ unmodified as components of their parent tags." | |||
| 229 | (mapc (lambda (tag) | 229 | (mapc (lambda (tag) |
| 230 | (let ((components (semantic-tag-components tag))) | 230 | (let ((components (semantic-tag-components tag))) |
| 231 | (if (and components | 231 | (if (and components |
| 232 | ;; unpositined tags can be hazardous to | 232 | ;; unpositioned tags can be hazardous to |
| 233 | ;; completion. Do we need any type of tag | 233 | ;; completion. Do we need any type of tag |
| 234 | ;; here? - EL | 234 | ;; here? - EL |
| 235 | (semantic-tag-with-position-p (car components))) | 235 | (semantic-tag-with-position-p (car components))) |
diff --git a/lisp/cedet/semantic/symref.el b/lisp/cedet/semantic/symref.el index 61006802c0d..cbae9f85573 100644 --- a/lisp/cedet/semantic/symref.el +++ b/lisp/cedet/semantic/symref.el | |||
| @@ -324,7 +324,7 @@ Use the `semantic-symref-hit-tags' method to get this list.") | |||
| 324 | (setq ans (list (car files)) | 324 | (setq ans (list (car files)) |
| 325 | files (cdr files)) | 325 | files (cdr files)) |
| 326 | (dolist (F files) | 326 | (dolist (F files) |
| 327 | ;; This algorithm for uniqing the file list depends on the | 327 | ;; This algorithm for uniquifying the file list depends on the |
| 328 | ;; tool in question providing all the hits in the same file | 328 | ;; tool in question providing all the hits in the same file |
| 329 | ;; grouped together. | 329 | ;; grouped together. |
| 330 | (when (not (string= F (car ans))) | 330 | (when (not (string= F (car ans))) |
diff --git a/lisp/cedet/semantic/symref/list.el b/lisp/cedet/semantic/symref/list.el index ce3500f83e1..53422541c47 100644 --- a/lisp/cedet/semantic/symref/list.el +++ b/lisp/cedet/semantic/symref/list.el | |||
| @@ -401,7 +401,7 @@ BUTTON is the button that was clicked." | |||
| 401 | 401 | ||
| 402 | ;;; UTILS | 402 | ;;; UTILS |
| 403 | ;; | 403 | ;; |
| 404 | ;; List mode utils for understadning the current line | 404 | ;; List mode utils for understanding the current line |
| 405 | 405 | ||
| 406 | (defun semantic-symref-list-on-hit-p () | 406 | (defun semantic-symref-list-on-hit-p () |
| 407 | "Return the line number if the cursor is on a buffer line with a hit. | 407 | "Return the line number if the cursor is on a buffer line with a hit. |
diff --git a/lisp/cedet/srecode/texi.el b/lisp/cedet/srecode/texi.el index acfc2486711..df90f6c464f 100644 --- a/lisp/cedet/srecode/texi.el +++ b/lisp/cedet/srecode/texi.el | |||
| @@ -244,7 +244,7 @@ that class. | |||
| 244 | `function' => @dfn{function} | 244 | `function' => @dfn{function} |
| 245 | `variable' => @code{variable} | 245 | `variable' => @code{variable} |
| 246 | `class' => @code{class} @xref{class} | 246 | `class' => @code{class} @xref{class} |
| 247 | `unknown' => @code{unknonwn} | 247 | `unknown' => @code{unknown} |
| 248 | \"text\" => ``text'' | 248 | \"text\" => ``text'' |
| 249 | 'quoteme => @code{quoteme} | 249 | 'quoteme => @code{quoteme} |
| 250 | non-nil => non-@code{nil} | 250 | non-nil => non-@code{nil} |