summaryrefslogtreecommitdiff
path: root/lisp/cedet
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2011-12-18 22:21:24 -0800
committerPaul Eggert <eggert@cs.ucla.edu>2011-12-18 22:21:24 -0800
commit99d990817cac77ba755b4e31722c44f6f6bbe3b0 (patch)
tree20ede6f28ea8785e182ee29d753a547409dd39c4 /lisp/cedet
parent3771cb1735b47102e7f94187bcdeb1a4644a557e (diff)
downloademacs-99d990817cac77ba755b4e31722c44f6f6bbe3b0.tar.gz
Spelling fixes.
Diffstat (limited to 'lisp/cedet')
-rw-r--r--lisp/cedet/data-debug.el4
-rw-r--r--lisp/cedet/semantic/analyze/debug.el2
2 files changed, 3 insertions, 3 deletions
diff --git a/lisp/cedet/data-debug.el b/lisp/cedet/data-debug.el
index 329d1c608c2..d553c433fc4 100644
--- a/lisp/cedet/data-debug.el
+++ b/lisp/cedet/data-debug.el
@@ -1060,11 +1060,11 @@ If the result is a list or vector, then use the data debugger to display it."
(setq values (cons (eval expr) values))
(let ((old-value (make-symbol "t")) new-value)
;; Bind debug-on-error to something unique so that we can
- ;; detect when evaled code changes it.
+ ;; detect when evalled code changes it.
(let ((debug-on-error old-value))
(setq values (cons (eval expr) values))
(setq new-value debug-on-error))
- ;; If evaled code has changed the value of debug-on-error,
+ ;; If evalled code has changed the value of debug-on-error,
;; propagate that change to the global binding.
(unless (eq old-value new-value)
(setq debug-on-error new-value))))
diff --git a/lisp/cedet/semantic/analyze/debug.el b/lisp/cedet/semantic/analyze/debug.el
index b02358b7243..ce8e79b19dc 100644
--- a/lisp/cedet/semantic/analyze/debug.el
+++ b/lisp/cedet/semantic/analyze/debug.el
@@ -70,7 +70,7 @@
(let ((pentry (nth idx pf))
(ptentry (nth idx pft)))
(if (or (stringp pentry) (not ptentry))
- ;; Found someting ok. stop
+ ;; Found something ok. Stop.
(setq stop t)
(setq idx (1+ idx)))))
;; We found the first non-tag entry. What is the situation?