comparison lisp/cedet/semantic/lex.el @ 105423:309bc750556d

* 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.
author Juanma Barranquero <lekktu@gmail.com>
date Sun, 04 Oct 2009 01:44:39 +0000
parents 7f4c7f5c0eba
children d0906291f75b
comparison
equal deleted inserted replaced
105422:cb1ae417fcc7 105423:309bc750556d
895 ;; 895 ;;
896 (defmacro semantic-lex-token (symbol start end &optional str) 896 (defmacro semantic-lex-token (symbol start end &optional str)
897 "Create a lexical token. 897 "Create a lexical token.
898 SYMBOL is a symbol representing the class of syntax found. 898 SYMBOL is a symbol representing the class of syntax found.
899 START and END define the bounds of the token in the current buffer. 899 START and END define the bounds of the token in the current buffer.
900 Optional STR is the string for the token only if the the bounds 900 Optional STR is the string for the token only if the bounds in
901 in the buffer do not cover the string they represent. (As from 901 the buffer do not cover the string they represent. (As from
902 macro expansion.)" 902 macro expansion.)"
903 ;; This if statement checks the existance of a STR argument at 903 ;; This if statement checks the existance of a STR argument at
904 ;; compile time, where STR is some symbol or constant. If the 904 ;; compile time, where STR is some symbol or constant. If the
905 ;; variable STr (runtime) is nil, this will make an incorrect decision. 905 ;; variable STr (runtime) is nil, this will make an incorrect decision.
906 ;; 906 ;;