diff options
Diffstat (limited to 'lisp/cedet/semantic')
-rw-r--r-- | lisp/cedet/semantic/analyze.el | 2 | ||||
-rw-r--r-- | lisp/cedet/semantic/ctxt.el | 2 | ||||
-rw-r--r-- | lisp/cedet/semantic/db-typecache.el | 2 | ||||
-rw-r--r-- | lisp/cedet/semantic/imenu.el | 2 | ||||
-rw-r--r-- | lisp/cedet/semantic/scope.el | 4 | ||||
-rw-r--r-- | lisp/cedet/semantic/tag-ls.el | 2 | ||||
-rw-r--r-- | lisp/cedet/semantic/wisent/python.el | 4 |
7 files changed, 9 insertions, 9 deletions
diff --git a/lisp/cedet/semantic/analyze.el b/lisp/cedet/semantic/analyze.el index 5cdd1577a6e..a61fb6b1cf2 100644 --- a/lisp/cedet/semantic/analyze.el +++ b/lisp/cedet/semantic/analyze.el @@ -476,7 +476,7 @@ If called interactively, display interesting information about POSITION in a separate buffer. Returns an object based on symbol `semantic-analyze-context'. -This function can be overriden with the symbol `analyze-context'. +This function can be overridden with the symbol `analyze-context'. When overriding this function, your override will be called while cursor is at POSITION. In addition, your function will not be called if a cached copy of the return object is found." diff --git a/lisp/cedet/semantic/ctxt.el b/lisp/cedet/semantic/ctxt.el index 2eddfdc1c8e..1108e019870 100644 --- a/lisp/cedet/semantic/ctxt.el +++ b/lisp/cedet/semantic/ctxt.el @@ -154,7 +154,7 @@ Return non-nil if there is no upper context." (define-overloadable-function semantic-get-local-variables (&optional point) "Get the local variables based on POINT's context. Local variables are returned in Semantic tag format. -This can be overriden with `get-local-variables'." +This can be overridden with `get-local-variables'." ;; Disable parsing messages (let ((semantic--progress-reporter nil)) (save-excursion diff --git a/lisp/cedet/semantic/db-typecache.el b/lisp/cedet/semantic/db-typecache.el index 0096c1aab09..76428057ef5 100644 --- a/lisp/cedet/semantic/db-typecache.el +++ b/lisp/cedet/semantic/db-typecache.el @@ -97,7 +97,7 @@ Said object must support `semantic-reset' methods.") (when (semantic-find-tags-by-class 'type new-tags) ;; Reset our index (oset tc filestream nil) - t ;; Return true, our core file tags have changed in a relavant way. + t ;; Return true, our core file tags have changed in a relevant way. ) ;; NO CODE HERE diff --git a/lisp/cedet/semantic/imenu.el b/lisp/cedet/semantic/imenu.el index 35d9ff04a2a..033c34e1b83 100644 --- a/lisp/cedet/semantic/imenu.el +++ b/lisp/cedet/semantic/imenu.el @@ -393,7 +393,7 @@ Optional argument PARENT is a tag parent of STREAM." semantic-imenu-bucketize-file) (semantic-create-imenu-index-1 parts tag) (semantic-create-imenu-subindex parts)))) - ;; Only add a *definition* if we have a postion + ;; Only add a *definition* if we have a position ;; in that type tag. (if (semantic-tag-with-position-p tag) (cons diff --git a/lisp/cedet/semantic/scope.el b/lisp/cedet/semantic/scope.el index 53695015e4a..30c57571599 100644 --- a/lisp/cedet/semantic/scope.el +++ b/lisp/cedet/semantic/scope.el @@ -412,7 +412,7 @@ implicit \"object\"." )) (setq typelist (cdr typelist))) - ;; Loop over the types (which should be sorted by postion + ;; Loop over the types (which should be sorted by position) ;; adding to the scopelist as we go, and using the scopelist ;; for additional searching! (while typelist2 @@ -424,7 +424,7 @@ implicit \"object\"." currentscope)) (setq typelist2 (cdr typelist2))) - ;; Collect all the types (class, etc) that are in our heratage. + ;; Collect all the types (class, etc) that are in our heritage. ;; These are types that we can extract members from, not those ;; declared in using statements, or the like. ;; Get the PARENTS including nesting scope for this location. diff --git a/lisp/cedet/semantic/tag-ls.el b/lisp/cedet/semantic/tag-ls.el index 8f54698d506..72c14141166 100644 --- a/lisp/cedet/semantic/tag-ls.el +++ b/lisp/cedet/semantic/tag-ls.el @@ -41,7 +41,7 @@ (define-overloadable-function semantic-tag-calculate-parent (tag) "Attempt to calculate the parent of TAG. -The default behavior (if not overriden with `tag-calculate-parent') +The default behavior (if not overridden with `tag-calculate-parent') is to search a buffer found with TAG, and if externally defined, search locally, then semanticdb for that tag (when enabled.)") diff --git a/lisp/cedet/semantic/wisent/python.el b/lisp/cedet/semantic/wisent/python.el index 095a817f08d..1f52e9eb3b6 100644 --- a/lisp/cedet/semantic/wisent/python.el +++ b/lisp/cedet/semantic/wisent/python.el @@ -108,7 +108,7 @@ line ends at the end of the buffer, leave the point there." (defun wisent-python-forward-line-skip-indented () "Move point to the next logical line, skipping indented lines. That is the next line whose indentation is less than or equal to the -identation of the current line." +indentation of the current line." (let ((indent (current-indentation))) (while (progn (wisent-python-forward-line) (and (not (eobp)) @@ -291,7 +291,7 @@ To be implemented for Python! For now just return nil." ;; Character used to separation a parent/child relationship semantic-type-relation-separator-character '(".") semantic-command-separation-character ";" - ;; The following is no more necessary as semantic-lex is overriden + ;; The following is no more necessary as semantic-lex is overridden ;; in python-mode. ;; semantic-lex-analyzer 'wisent-python-lexer |