From: Paul Eggert Date: Fri, 26 Dec 2014 02:18:42 +0000 (-0800) Subject: Spelling fixes X-Git-Tag: emacs-25.0.90~2634^2~4 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b3946c9b9a4a5fcd49e1a5e75d9dc2c369a6bd29;p=emacs.git Spelling fixes --- diff --git a/doc/emacs/trouble.texi b/doc/emacs/trouble.texi index bae9cad78bf..13d5cbd7ec2 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 -@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. diff --git a/etc/NEWS b/etc/NEWS index 37806a7fe56..14933aa8b0c 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 7271e391f47..d2145287c85 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 c6a421a3173..0be99794356 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 30d28ffe4c9..02e02de4e9e 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 cb9f1ed9b4c..2b593c35a54 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 d76a8fcb783..5b66050aa92 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 c43e6a07ddc..6f58908cce7 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)))