diff options
author | Glenn Morris <rgm@gnu.org> | 2011-02-27 17:07:29 -0800 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2011-02-27 17:07:29 -0800 |
commit | 2b0c7330457b8ca42375c92ada7dc7cefb0fa9fb (patch) | |
tree | b924eb1c22ab3bce643676162ef039f250782661 /lisp/cedet/semantic/edit.el | |
parent | df7f0d0b10ce31a6f1a8b7e979e120c695699d5a (diff) | |
parent | d1f61aaf6f0b6a2cf2bbb7eaf5631f8b580568d4 (diff) | |
download | emacs-2b0c7330457b8ca42375c92ada7dc7cefb0fa9fb.tar.gz |
Merge from emacs-23; up to 2010-06-03T05:41:49Z!rgm@gnu.org.
Diffstat (limited to 'lisp/cedet/semantic/edit.el')
-rw-r--r-- | lisp/cedet/semantic/edit.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/cedet/semantic/edit.el b/lisp/cedet/semantic/edit.el index ef206fd3122..7f7e82a95c2 100644 --- a/lisp/cedet/semantic/edit.el +++ b/lisp/cedet/semantic/edit.el @@ -426,7 +426,7 @@ See `semantic-edits-change-leaf-tag' for details on parents." ;; confirmed as the lineage of `overlapped-tags' ;; which must have a value by now. - ;; Loop over the search list to find the preceeding CDR. + ;; Loop over the search list to find the preceding CDR. ;; Fortunatly, (car overlapped-tags) happens to be ;; the first tag positionally. (let ((tokstart (semantic-tag-start (car overlapped-tags)))) @@ -874,7 +874,7 @@ pre-positioned to a convenient location." )) (message "To Remove Middle Tag: (%s)" (semantic-format-tag-name first))) - ;; Find in the cache the preceeding tag + ;; Find in the cache the preceding tag (while (and cachestart (not (eq first (car (cdr cachestart))))) (setq cachestart (cdr cachestart))) ;; Find the last tag |