aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/cedet/semantic/java.el
diff options
context:
space:
mode:
authorJuanma Barranquero2010-01-12 05:51:26 +0100
committerJuanma Barranquero2010-01-12 05:51:26 +0100
commit91abaf51b3d81f17b41e63a0f7c3241825ff8a55 (patch)
tree7a4a7bf10defe53d255b1ae9147a20765affb411 /lisp/cedet/semantic/java.el
parentd8b8451f8ea52d751035449278ec36c3e598f9cf (diff)
downloademacs-91abaf51b3d81f17b41e63a0f7c3241825ff8a55.tar.gz
emacs-91abaf51b3d81f17b41e63a0f7c3241825ff8a55.zip
Fix typos in CEDET docstrings.
* cedet/semantic/analyze.el (semantic-analyze-push-error) (semantic-analyze-context, semantic-analyze-context-assignment) (semantic-analyze-find-tag-sequence, semantic-analyze-find-tag): * cedet/semantic/java.el (java-mode, semantic-tag-include-filename) (semantic-java-doc-keywords-map): * cedet/semantic/bovine/c.el (c-mode, semantic-c-member-of-autocast) (semantic-lex-c-nested-namespace-ignore-second, semantic-parse-region) (semantic-c-parse-lexical-token, semantic-c-debug-mode-init-pch) (semantic-c-classname, semantic-format-tag-uml-prototype) (semantic-c-dereference-namespace, semantic-analyze-type-constants): * cedet/semantic/bovine/el.el (semantic-elisp-form-to-doc-string) (semantic-emacs-lisp-obsoleted-doc, semantic-up-context) (semantic-get-local-variables, semantic-end-of-command) (semantic-beginning-of-command, semantic-ctxt-current-class-list) (lisp-mode): * cedet/semantic/bovine/make.el (makefile-mode): * cedet/semantic/wisent/python.el (wisent-python-string-re) (wisent-python-implicit-line-joining-p, wisent-python-forward-string) (wisent-python-lex-beginning-of-line, wisent-python-lex-end-of-line) (semantic-lex, semantic-get-local-variables, python-mode): * cedet/semantic/wisent/python-wy.el (wisent-python-wy--keyword-table): * cedet/srecode/extract.el (srecode-extract-state-set) (srecode-extract-method): Fix typos in docstrings.
Diffstat (limited to 'lisp/cedet/semantic/java.el')
-rw-r--r--lisp/cedet/semantic/java.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/cedet/semantic/java.el b/lisp/cedet/semantic/java.el
index fcdd63ef490..47c51a2d3d9 100644
--- a/lisp/cedet/semantic/java.el
+++ b/lisp/cedet/semantic/java.el
@@ -149,7 +149,7 @@ corresponding compound declaration."
149 java-mode semantic-java-dependency-system-include-path 149 java-mode semantic-java-dependency-system-include-path
150 ;; @todo - Use JDEE to get at the include path, or something else? 150 ;; @todo - Use JDEE to get at the include path, or something else?
151 nil 151 nil
152 "The system include path used by Java langauge.") 152 "The system include path used by Java language.")
153 153
154;; Local context 154;; Local context
155;; 155;;
@@ -239,7 +239,7 @@ Optional argument COLOR indicates that color should be mixed in."
239 239
240;; Thanks Bruce Stephens 240;; Thanks Bruce Stephens
241(define-mode-local-override semantic-tag-include-filename java-mode (tag) 241(define-mode-local-override semantic-tag-include-filename java-mode (tag)
242 "Return a suitable path for (some) Java imports" 242 "Return a suitable path for (some) Java imports."
243 (let ((name (semantic-tag-name tag))) 243 (let ((name (semantic-tag-name tag)))
244 (concat (mapconcat 'identity (split-string name "\\.") "/") ".java"))) 244 (concat (mapconcat 'identity (split-string name "\\.") "/") ".java")))
245 245
@@ -371,9 +371,9 @@ That is TAG `symbol-name' without the leading '@'."
371(defun semantic-java-doc-keywords-map (fun &optional property) 371(defun semantic-java-doc-keywords-map (fun &optional property)
372 "Run function FUN for each javadoc keyword. 372 "Run function FUN for each javadoc keyword.
373Return the list of FUN results. If optional PROPERTY is non nil only 373Return the list of FUN results. If optional PROPERTY is non nil only
374call FUN for javadoc keyword which have a value for PROPERTY. FUN 374call FUN for javadoc keywords which have a value for PROPERTY. FUN
375receives two arguments: the javadoc keyword and its associated 375receives two arguments: the javadoc keyword and its associated
376'javadoc property list. It can return any value. Nil values are 376'javadoc property list. It can return any value. All nil values are
377removed from the result list." 377removed from the result list."
378 (delq nil 378 (delq nil
379 (mapcar 379 (mapcar