summaryrefslogtreecommitdiff
path: root/lisp/cedet
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2010-09-25 14:04:35 +0200
committerJuanma Barranquero <lekktu@gmail.com>2010-09-25 14:04:35 +0200
commit40b1a3a937512ff35884df2e8e19c3feed9f2688 (patch)
tree6229aa08095d281ddb33c6fdd040a0a43fc58f06 /lisp/cedet
parentda43f02119eb86ff8a4ee8ce7454b10d261ef714 (diff)
downloademacs-40b1a3a937512ff35884df2e8e19c3feed9f2688.tar.gz
Fix typos.
* lisp/finder.el (finder-unknown-keywords): * lisp/progmodes/gdb-mi.el (gdb-jsonify-buffer, gdb-running-threads-count): * lisp/progmodes/etags.el (tags-table-including): Fix typos in docstrings. * lisp/cedet/semantic/lex.el (semantic-ignore-comments): Doc fix. * lisp/cedet/semantic/symref/list.el (semantic-symref-list-rename-open-hits): Fix typo in error message. (semantic-symref-list-map-open-hits): Fix typo in docstring. * lisp/org/org-agenda.el (org-agenda-hide-tags-regexp): * lisp/org/org.el (org-refile-targets): Fix typos in docstrings.
Diffstat (limited to 'lisp/cedet')
-rw-r--r--lisp/cedet/ChangeLog8
-rw-r--r--lisp/cedet/ede/base.el2
-rw-r--r--lisp/cedet/semantic/lex.el4
-rw-r--r--lisp/cedet/semantic/symref/list.el4
-rw-r--r--lisp/cedet/srecode/fields.el2
5 files changed, 14 insertions, 6 deletions
diff --git a/lisp/cedet/ChangeLog b/lisp/cedet/ChangeLog
index fb2fa1c9c05..df02d554004 100644
--- a/lisp/cedet/ChangeLog
+++ b/lisp/cedet/ChangeLog
@@ -1,3 +1,11 @@
+2010-09-25 Juanma Barranquero <lekktu@gmail.com>
+
+ * semantic/lex.el (semantic-ignore-comments): Doc fix.
+
+ * semantic/symref/list.el (semantic-symref-list-rename-open-hits):
+ Fix typo in error message.
+ (semantic-symref-list-map-open-hits): Fix typo in docstring.
+
2010-09-21 Eric Ludlam <zappo@gnu.org>
Synch SRecode to CEDET 1.0.
diff --git a/lisp/cedet/ede/base.el b/lisp/cedet/ede/base.el
index f1f24ed339f..c2bfe1872a2 100644
--- a/lisp/cedet/ede/base.el
+++ b/lisp/cedet/ede/base.el
@@ -452,7 +452,7 @@ Do this by extracting the lowest directory name."
;; Targets and projects are often associated with other files, such as
;; header files, documentation files and the like. Have strong
;; associations can make useful user commands to quickly navigate
-;; between the files base on their assocaitions.
+;; between the files base on their associations.
;;
(defun ede-header-file ()
"Return the header file for the current buffer.
diff --git a/lisp/cedet/semantic/lex.el b/lisp/cedet/semantic/lex.el
index af312494a81..e0fed29b4fa 100644
--- a/lisp/cedet/semantic/lex.el
+++ b/lisp/cedet/semantic/lex.el
@@ -1810,8 +1810,8 @@ what syntax class CHAR has.")
(defvar semantic-ignore-comments t
"Default comment handling.
-t means to strip comments when flexing. Nil means to keep comments
-as part of the token stream.")
+The value t means to strip comments when flexing; nil means
+to keep comments as part of the token stream.")
(make-variable-buffer-local 'semantic-ignore-comments)
(defvar semantic-flex-enable-newlines nil
diff --git a/lisp/cedet/semantic/symref/list.el b/lisp/cedet/semantic/symref/list.el
index 9e0ee2a1b5b..53044e278ac 100644
--- a/lisp/cedet/semantic/symref/list.el
+++ b/lisp/cedet/semantic/symref/list.el
@@ -492,7 +492,7 @@ Closed items will be skipped."
(let ((count (semantic-symref-list-map-open-hits
(lambda () (replace-match newname nil t)))))
(semantic-symref-list-update-open-hits)
- (message "Renamed %d occurances." count)))
+ (message "Renamed %d occurrences." count)))
;;; REFACTORING UTILITIES
;;
@@ -501,7 +501,7 @@ Closed items will be skipped."
(defun semantic-symref-list-map-open-hits (function)
"For every open hit in the symref buffer, perform FUNCTION.
The `match-data' will be set to a successful hit of the searched for symbol.
-Return the number of occurances FUNCTION was operated upon."
+Return the number of occurrences FUNCTION was operated upon."
;; First Pass in this function - a straight rename.
;; Second Pass - Allow context specification based on
diff --git a/lisp/cedet/srecode/fields.el b/lisp/cedet/srecode/fields.el
index 0cfc2953792..ceb5f77f87f 100644
--- a/lisp/cedet/srecode/fields.el
+++ b/lisp/cedet/srecode/fields.el
@@ -198,7 +198,7 @@ If SET-TO is a string, then replace the text of OLAID wit SET-TO."
(oset ir fields srecode-field-archive)
(setq srecode-field-archive nil)
- ;; Initailize myself first.
+ ;; Initialize myself first.
(call-next-method)
)