diff options
author | Glenn Morris <rgm@gnu.org> | 2011-02-27 17:07:29 -0800 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2011-02-27 17:07:29 -0800 |
commit | 2b0c7330457b8ca42375c92ada7dc7cefb0fa9fb (patch) | |
tree | b924eb1c22ab3bce643676162ef039f250782661 /lisp/cedet | |
parent | df7f0d0b10ce31a6f1a8b7e979e120c695699d5a (diff) | |
parent | d1f61aaf6f0b6a2cf2bbb7eaf5631f8b580568d4 (diff) | |
download | emacs-2b0c7330457b8ca42375c92ada7dc7cefb0fa9fb.tar.gz |
Merge from emacs-23; up to 2010-06-03T05:41:49Z!rgm@gnu.org.
Diffstat (limited to 'lisp/cedet')
-rw-r--r-- | lisp/cedet/semantic/analyze.el | 2 | ||||
-rw-r--r-- | lisp/cedet/semantic/complete.el | 2 | ||||
-rw-r--r-- | lisp/cedet/semantic/edit.el | 4 | ||||
-rw-r--r-- | lisp/cedet/semantic/format.el | 2 | ||||
-rw-r--r-- | lisp/cedet/semantic/java.el | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/lisp/cedet/semantic/analyze.el b/lisp/cedet/semantic/analyze.el index 8a0fbd5cc37..5cdd1577a6e 100644 --- a/lisp/cedet/semantic/analyze.el +++ b/lisp/cedet/semantic/analyze.el @@ -100,7 +100,7 @@ Usually bound to the dimension of a single symbol or command.") :type list :documentation "List of tags defining local text. This can be nil, or a list where the last element can be a string -representing text that may be incomplete. Preceeding elements +representing text that may be incomplete. Preceding elements must be semantic tags representing variables or functions called in a dereference sequence.") (prefixclass :initarg :prefixclass diff --git a/lisp/cedet/semantic/complete.el b/lisp/cedet/semantic/complete.el index 31e92724a00..47cb722e005 100644 --- a/lisp/cedet/semantic/complete.el +++ b/lisp/cedet/semantic/complete.el @@ -1264,7 +1264,7 @@ inserted into the current context.") ;; generated by a collector. This format is in semanticdb search ;; form. This vaguely standard form is a bit challenging to navigate ;; because the tags do not contain buffer info, but the file associated -;; with the tags preceed the tag in the list. +;; with the tags precedes the tag in the list. ;; ;; Basic displayors don't care, and can strip the results. ;; Advanced highlighting displayors need to know when they need diff --git a/lisp/cedet/semantic/edit.el b/lisp/cedet/semantic/edit.el index ef206fd3122..7f7e82a95c2 100644 --- a/lisp/cedet/semantic/edit.el +++ b/lisp/cedet/semantic/edit.el @@ -426,7 +426,7 @@ See `semantic-edits-change-leaf-tag' for details on parents." ;; confirmed as the lineage of `overlapped-tags' ;; which must have a value by now. - ;; Loop over the search list to find the preceeding CDR. + ;; Loop over the search list to find the preceding CDR. ;; Fortunatly, (car overlapped-tags) happens to be ;; the first tag positionally. (let ((tokstart (semantic-tag-start (car overlapped-tags)))) @@ -874,7 +874,7 @@ pre-positioned to a convenient location." )) (message "To Remove Middle Tag: (%s)" (semantic-format-tag-name first))) - ;; Find in the cache the preceeding tag + ;; Find in the cache the preceding tag (while (and cachestart (not (eq first (car (cdr cachestart))))) (setq cachestart (cdr cachestart))) ;; Find the last tag diff --git a/lisp/cedet/semantic/format.el b/lisp/cedet/semantic/format.el index ecd03ccec73..fa6e7517624 100644 --- a/lisp/cedet/semantic/format.el +++ b/lisp/cedet/semantic/format.el @@ -296,7 +296,7 @@ local definitions." (define-overloadable-function semantic-format-tag-canonical-name (tag &optional parent color) "Return a canonical name for TAG. -A canonical name includes the names of any parents or namespaces preceeding +A canonical name includes the names of any parents or namespaces preceding the tag. Optional argument PARENT is the parent type if TAG is a detail. Optional argument COLOR means highlight the prototype with font-lock colors.") diff --git a/lisp/cedet/semantic/java.el b/lisp/cedet/semantic/java.el index 4489d0ffae5..71a205386db 100644 --- a/lisp/cedet/semantic/java.el +++ b/lisp/cedet/semantic/java.el @@ -256,7 +256,7 @@ Optional argument COLOR indicates that color should be mixed in." (define-mode-local-override semantic-documentation-for-tag java-mode (&optional tag nosnarf) "Find documentation from TAG and return it as a clean string. -Java have documentation set in a comment preceeding TAG's definition. +Java has documentation set in a comment preceding TAG's definition. Attempt to strip out comment syntactic sugar, unless optional argument NOSNARF is non-nil. If NOSNARF is 'lex, then return the semantic lex token." |