diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2011-11-14 22:00:24 +0100 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2011-11-14 22:00:24 +0100 |
commit | 0b381c7eb83c635f39159168a48c869d632d8081 (patch) | |
tree | 32ad79519ce958dc2dbcdcd357d37d652314edb1 /lisp/cedet/semantic/wisent/python.el | |
parent | 8350f087efe62e2ce0ded434534629a56cdc4e8c (diff) | |
download | emacs-0b381c7eb83c635f39159168a48c869d632d8081.tar.gz emacs-0b381c7eb83c635f39159168a48c869d632d8081.tar.bz2 emacs-0b381c7eb83c635f39159168a48c869d632d8081.zip |
Fix typos.
Diffstat (limited to 'lisp/cedet/semantic/wisent/python.el')
-rw-r--r-- | lisp/cedet/semantic/wisent/python.el | 4 |
1 files changed, 2 insertions, 2 deletions
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 |