emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master b3946c9: Spelling fixes


From: Paul Eggert
Subject: [Emacs-diffs] master b3946c9: Spelling fixes
Date: Fri, 26 Dec 2014 02:19:32 +0000

branch: master
commit b3946c9b9a4a5fcd49e1a5e75d9dc2c369a6bd29
Author: Paul Eggert <address@hidden>
Commit: Paul Eggert <address@hidden>

    Spelling fixes
---
 doc/emacs/trouble.texi      |    2 +-
 etc/NEWS                    |    2 +-
 lisp/let-alist.el           |    2 +-
 lisp/progmodes/etags.el     |    2 +-
 lisp/progmodes/xref.el      |    4 ++--
 lisp/window.el              |    2 +-
 src/keyboard.c              |    2 +-
 test/automated/let-alist.el |    2 +-
 8 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/doc/emacs/trouble.texi b/doc/emacs/trouble.texi
index bae9cad..13d5cbd 100644
--- a/doc/emacs/trouble.texi
+++ b/doc/emacs/trouble.texi
@@ -1231,7 +1231,7 @@ fix existing bug reports
 @url{http://debbugs.gnu.org/cgi/pkgreport.cgi?which=pkg&data=emacs}.
 
 @item
address@hidden etc/TOOD not in WWW_GNU_ORG
address@hidden etc/TODO not in WWW_GNU_ORG
 implement a feature listed in the @file{etc/TODO} file in the Emacs
 distribution, and submit a patch.
 
diff --git a/etc/NEWS b/etc/NEWS
index 37806a7..14933aa 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -440,7 +440,7 @@ and move to definitions, as well as pop back to the 
original location.
 
 *** New key bindings
 `xref-find-definitions' replaces `find-tag' and provides an interface
-to pick one destination among several.  Hence, `tags-toop-continue' is
+to pick one destination among several.  Hence, `tags-loop-continue' is
 unbound.  `xref-pop-marker-stack' replaces `pop-tag-mark', but uses an
 easier binding, which is now unoccupied (`M-,').
 `xref-find-definitions-other-window' replaces `find-tag-other-window'.
diff --git a/lisp/let-alist.el b/lisp/let-alist.el
index 7271e39..d214528 100644
--- a/lisp/let-alist.el
+++ b/lisp/let-alist.el
@@ -77,7 +77,7 @@ symbol, and each cdr is the same symbol without the `.'."
         (mapcar #'let-alist--deep-dot-search data)))))
 
 (defun let-alist--access-sexp (symbol variable)
-  "Return a sexp used to acess SYMBOL inside VARIABLE."
+  "Return a sexp used to access SYMBOL inside VARIABLE."
   (let* ((clean (let-alist--remove-dot symbol))
          (name (symbol-name clean)))
     (if (string-match "\\`\\." name)
diff --git a/lisp/progmodes/etags.el b/lisp/progmodes/etags.el
index c6a421a..0be9979 100644
--- a/lisp/progmodes/etags.el
+++ b/lisp/progmodes/etags.el
@@ -2063,7 +2063,7 @@ for \\[find-tag] (which see)."
 ;;; Xref backend
 
 ;; Stop searching if we find more than xref-limit matches, as the xref
-;; infrastracture is not designed to handle very long lists.
+;; infrastructure is not designed to handle very long lists.
 ;; Switching to some kind of lazy list might be better, but hopefully
 ;; we hit the limit rarely.
 (defconst etags--xref-limit 1000)
diff --git a/lisp/progmodes/xref.el b/lisp/progmodes/xref.el
index 30d28ff..02e02de 100644
--- a/lisp/progmodes/xref.el
+++ b/lisp/progmodes/xref.el
@@ -187,7 +187,7 @@ To create an xref object, call `xref-make'.")
 The return value must be a string or nil.  nil means no
 identifier at point found.
 
-If it's hard to determinte the identifier precisely (e.g. because
+If it's hard to determine the identifier precisely (e.g., because
 it's a method call on unknown type), the implementation can
 return a simple string (such as symbol at point) marked with a
 special text property which `xref-find-function' would recognize
@@ -348,7 +348,7 @@ WINDOW controls how the buffer is displayed:
     (xref--pop-to-location loc window)))
 
 (define-derived-mode xref--xref-buffer-mode fundamental-mode "XREF"
-  "Mode for displaying cross-refenences."
+  "Mode for displaying cross-references."
   (setq buffer-read-only t))
 
 (let ((map xref--xref-buffer-mode-map))
diff --git a/lisp/window.el b/lisp/window.el
index cb9f1ed..2b593c3 100644
--- a/lisp/window.el
+++ b/lisp/window.el
@@ -7870,7 +7870,7 @@ is active.  This function is run by 
`mouse-autoselect-window-timer'."
       ((or (eq mouse-autoselect-window-state 'suspend)
           ;; When the mouse is at its first recorded position, restart
           ;; delayed autoselection.  This works around a scenario with
-          ;; two two-window frames with identic dimensions: Select the
+          ;; two two-window frames with identical dimensions: select the
           ;; first window of the first frame, switch to the second
           ;; frame, move the mouse to its second window, minimize the
           ;; second frame.  Now the second window of the first frame
diff --git a/src/keyboard.c b/src/keyboard.c
index d76a8fc..5b66050 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -276,7 +276,7 @@ bool input_pending;
 /* True if more input was available last time we read an event.
 
    Since redisplay can take a significant amount of time and is not
-   indispensible to perform the user's commands, when input arrives
+   indispensable to perform the user's commands, when input arrives
    "too fast", Emacs skips redisplay.  More specifically, if the next
    command has already been input when we finish the previous command,
    we skip the intermediate redisplay.
diff --git a/test/automated/let-alist.el b/test/automated/let-alist.el
index c43e6a0..6f58908 100644
--- a/test/automated/let-alist.el
+++ b/test/automated/let-alist.el
@@ -62,7 +62,7 @@
       '(nil 1 1 2 nil)))))
 
 (ert-deftest let-alist-remove-dot ()
-  "Remove firt dot from symbol."
+  "Remove first dot from symbol."
   (should (equal (let-alist--remove-dot 'hi) 'hi))
   (should (equal (let-alist--remove-dot '.hi) 'hi))
   (should (equal (let-alist--remove-dot '..hi) '.hi)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]