diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2011-11-15 18:37:37 +0100 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2011-11-15 18:37:37 +0100 |
commit | c7015153512a7d00aba390cc1f9a6b512a9c9ed7 (patch) | |
tree | 273167d1dbfc68a60ad4c195b9cd0bcfae9a302d /test/cedet | |
parent | dcecfb4cb41ffa672672f55df8ce20deb7af78c4 (diff) | |
download | emacs-c7015153512a7d00aba390cc1f9a6b512a9c9ed7.tar.gz |
Fix typos.
Diffstat (limited to 'test/cedet')
-rw-r--r-- | test/cedet/semantic-utest.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/cedet/semantic-utest.el b/test/cedet/semantic-utest.el index a9a7c765f2b..db737b60c6f 100644 --- a/test/cedet/semantic-utest.el +++ b/test/cedet/semantic-utest.el @@ -787,7 +787,7 @@ SKIPNAMES is a list of names to remove from NAME-CONTENTS" (defun semantic-utest-kill-indicator ( killme insertme) "Kill the line with KILLME on it and insert INSERTME in its place." (goto-char (point-min)) -; (re-search-forward (concat "/\\*" indicator "\\*/")); JAVE this isnt generic enough for different lagnuages +; (re-search-forward (concat "/\\*" indicator "\\*/")); JAVE this isn't generic enough for different languages (re-search-forward killme) (beginning-of-line) (setq semantic-utest-last-kill-pos (point)) @@ -812,7 +812,7 @@ SKIPNAMES is a list of names to remove from NAME-CONTENTS" (defun semantic-utest-last-invalid (name-contents names-removed killme insertme) "Make the last fcn invalid." (semantic-utest-kill-indicator killme insertme) -; (semantic-utest-verify-names name-contents names-removed); verify its gone ;new validator doesnt handle skipnames yet +; (semantic-utest-verify-names name-contents names-removed); verify its gone ;new validator doesn't handle skipnames yet (semantic-utest-unkill-indicator);put back killed stuff ) |