]> git.eshelyaron.com Git - emacs.git/commitdiff
Spelling fixes
authorPaul Eggert <eggert@cs.ucla.edu>
Fri, 26 Dec 2014 02:18:42 +0000 (18:18 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Fri, 26 Dec 2014 02:19:28 +0000 (18:19 -0800)
doc/emacs/trouble.texi
etc/NEWS
lisp/let-alist.el
lisp/progmodes/etags.el
lisp/progmodes/xref.el
lisp/window.el
src/keyboard.c
test/automated/let-alist.el

index bae9cad78bfdf8487995326bc16fcc892aae58c9..13d5cbd7ec28ee077ade4ade85e2a5553de5962e 100644 (file)
@@ -1231,7 +1231,7 @@ fix existing bug reports
 @url{http://debbugs.gnu.org/cgi/pkgreport.cgi?which=pkg&data=emacs}.
 
 @item
-@c etc/TOOD not in WWW_GNU_ORG
+@c 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.
 
index 37806a7fe567f3e95ee85159a53036e03678d31b..14933aa8b0cffd56486f7809fc0e804cdb096004 100644 (file)
--- 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'.
index 7271e391f47f518929a5534016d1c9082f3c0da9..d2145287c85b1ea714b2cad4880964c53ab6a174 100644 (file)
@@ -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)
index c6a421a31738b6233f75d497ddd48870bb0749b8..0be9979435607780703a4756532b0e043d5680df 100644 (file)
@@ -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)
index 30d28ffe4c9fdd0c3731a8d0c266bf69ba1b5ffe..02e02de4e9efc06149f0f5295c474b3490a044ba 100644 (file)
@@ -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))
index cb9f1ed9b4cd685b1535409da82c2e9994ed67a4..2b593c35a54e85366a6f2aca89eba94beb90a21c 100644 (file)
@@ -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
index d76a8fcb78397c9a852d6b0574fe2e094a7fa481..5b66050aa927449971e2fffbe758d86420031ac3 100644 (file)
@@ -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.
index c43e6a07ddc43f8a106c1b9c0340f8e9ded23053..6f58908cce76f664ba2b3055519e19037b256ac7 100644 (file)
@@ -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)))