]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix comment typos.
authorGlenn Morris <rgm@gnu.org>
Wed, 30 Sep 2009 07:55:35 +0000 (07:55 +0000)
committerGlenn Morris <rgm@gnu.org>
Wed, 30 Sep 2009 07:55:35 +0000 (07:55 +0000)
(semantic-mrub-completing-read, semantic-mrub-switch-tags): Fix doc typos.

lisp/ChangeLog
lisp/cedet/semantic/mru-bookmark.el

index ad3abdc332ada0c9dc40170ecc56442f8294fd83..1e60a7f2bf08c32d223bf2d5572b354df7c36558 100644 (file)
@@ -1,5 +1,8 @@
 2009-09-30  Glenn Morris  <rgm@gnu.org>
 
+       * cedet/semantic/mru-bookmark.el (semantic-mrub-completing-read)
+       (semantic-mrub-switch-tags): Fix doc typos.
+
        * cedet/semantic/db-global.el (data-debug-new-buffer)
        (data-debug-insert-thing): Remove unneeded declarations (one broken).
        (semanticdb-enable-gnu-global-databases): Fix prompt typo.
index 66da681e3b434cc32855a7afa0d2bbf8bfa4d7d2..550aa8424fc4e66b71c04b9fc5d54fa67816ffc8 100644 (file)
@@ -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))