summaryrefslogtreecommitdiff
path: root/lisp/cedet/semantic/mru-bookmark.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2009-09-30 07:55:35 +0000
committerGlenn Morris <rgm@gnu.org>2009-09-30 07:55:35 +0000
commitd16d4acd043c76ba70dd042af9de2394fa14ac90 (patch)
tree7ff0a774a3c08305b4d889a66b797dca92c5256f /lisp/cedet/semantic/mru-bookmark.el
parent40f9bf943754f8cb1f72bbb395c7de489053dc98 (diff)
downloademacs-d16d4acd043c76ba70dd042af9de2394fa14ac90.tar.gz
Fix comment typos.
(semantic-mrub-completing-read, semantic-mrub-switch-tags): Fix doc typos.
Diffstat (limited to 'lisp/cedet/semantic/mru-bookmark.el')
-rw-r--r--lisp/cedet/semantic/mru-bookmark.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/cedet/semantic/mru-bookmark.el b/lisp/cedet/semantic/mru-bookmark.el
index 66da681e3b4..550aa8424fc 100644
--- a/lisp/cedet/semantic/mru-bookmark.el
+++ b/lisp/cedet/semantic/mru-bookmark.el
@@ -40,7 +40,7 @@
;;
;; C-x B <select a tag name> RET
;;
-;; In the above, the history is pre-filled with the tags you recenetly
+;; In the above, the history is pre-filled with the tags you recently
;; edited in the order you edited them.
;;; Code:
@@ -126,7 +126,7 @@ REASON is a symbol. See slot `reason' on `semantic-bookmark'."
(setq frequency (1+ frequency))
)
(oset sbm reason reason))
- ;; This can fail on XEmacs at miscelaneous times.
+ ;; This can fail on XEmacs at miscellaneous times.
(error nil))
)
@@ -355,7 +355,7 @@ minor mode is enabled."
(defun semantic-mrub-completing-read (prompt)
"Do a `completing-read' on elements from the mru bookmark ring.
-Argument PROMPT is the promot to use when reading."
+Argument PROMPT is the prompt to use when reading."
(if (ring-empty-p (oref semantic-mru-bookmark-ring ring))
(error "Semantic Bookmark ring is currently empty"))
(let* ((ring (oref semantic-mru-bookmark-ring ring))
@@ -399,7 +399,7 @@ Argument PROMPT is the promot to use when reading."
(defun semantic-mrub-switch-tags (tagmark)
"Switch tags to TAGMARK.
-Selects a new tag via promt through the mru tag ring.
+Selects a new tag via prompt through the mru tag ring.
Jumps to the tag and highlights it briefly."
(interactive (list (semantic-mrub-completing-read "Switch to tag")))
(if (not (semantic-bookmark-p tagmark))