aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/cedet/srecode
diff options
context:
space:
mode:
authorJuanma Barranquero2009-10-04 01:44:39 +0000
committerJuanma Barranquero2009-10-04 01:44:39 +0000
commita30e71aee84b52e1de298a29a96888150711e4a5 (patch)
treef1622d0464b75943033c7ba9f02eefe56b493d89 /lisp/cedet/srecode
parent04e65fdbb74c6b08cc340281beb38ddd7d1a7d85 (diff)
downloademacs-a30e71aee84b52e1de298a29a96888150711e4a5.tar.gz
emacs-a30e71aee84b52e1de298a29a96888150711e4a5.zip
* files-x.el (modify-dir-local-variable)
(copy-dir-locals-to-file-locals-prop-line): * cedet/ede/makefile-edit.el (makefile-beginning-of-command) (makefile-end-of-command): * cedet/semantic/lex.el (semantic-lex-token): * cedet/semantic/analyze/fcn.el (semantic-analyze-dereference-metatype-1): * cedet/semantic/bovine/c.el (semantic-lex-cpp-define) (semantic-lex-cpp-undef): * cedet/semantic/wisent/wisent.el (wisent-skip-block): * cedet/srecode/srt-mode.el (semantic-beginning-of-context) (semantic-end-of-context): Fix typos in docstrings.
Diffstat (limited to 'lisp/cedet/srecode')
-rw-r--r--lisp/cedet/srecode/srt-mode.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/cedet/srecode/srt-mode.el b/lisp/cedet/srecode/srt-mode.el
index e10c163b8db..49d77a35ddd 100644
--- a/lisp/cedet/srecode/srt-mode.el
+++ b/lisp/cedet/srecode/srt-mode.el
@@ -320,7 +320,7 @@ how many occur."
320 (beginning-of-line) 320 (beginning-of-line)
321 (while (re-search-forward es start t 2)) 321 (while (re-search-forward es start t 2))
322 (if (re-search-forward es start t) 322 (if (re-search-forward es start t)
323 ;; If there is a single, the the answer is yes. 323 ;; If there is a single, the answer is yes.
324 t 324 t
325 ;; If there wasn't another, then the answer is no. 325 ;; If there wasn't another, then the answer is no.
326 nil) 326 nil)
@@ -375,7 +375,7 @@ Moves out one named section."
375(define-mode-local-override semantic-beginning-of-context 375(define-mode-local-override semantic-beginning-of-context
376 srecode-template-mode (&optional point) 376 srecode-template-mode (&optional point)
377 "Move to the beginning of the current context. 377 "Move to the beginning of the current context.
378Moves the the beginning of one named section." 378Moves the beginning of one named section."
379 (if (semantic-up-context point) 379 (if (semantic-up-context point)
380 t 380 t
381 (let ((es (regexp-quote (srecode-template-get-escape-start))) 381 (let ((es (regexp-quote (srecode-template-get-escape-start)))
@@ -387,7 +387,7 @@ Moves the the beginning of one named section."
387(define-mode-local-override semantic-end-of-context 387(define-mode-local-override semantic-end-of-context
388 srecode-template-mode (&optional point) 388 srecode-template-mode (&optional point)
389 "Move to the beginning of the current context. 389 "Move to the beginning of the current context.
390Moves the the beginning of one named section." 390Moves the beginning of one named section."
391 (let ((name (srecode-up-context-get-name point)) 391 (let ((name (srecode-up-context-get-name point))
392 (tag (semantic-current-tag)) 392 (tag (semantic-current-tag))
393 (es (regexp-quote (srecode-template-get-escape-start)))) 393 (es (regexp-quote (srecode-template-get-escape-start))))