aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggert2014-12-25 18:18:42 -0800
committerPaul Eggert2014-12-25 18:19:28 -0800
commitb3946c9b9a4a5fcd49e1a5e75d9dc2c369a6bd29 (patch)
treee3e96b7376a2efbf984b6f743fcd33e8806604d4
parent1e6879dbdb0832427f5c588c89a53a8a80768a00 (diff)
downloademacs-b3946c9b9a4a5fcd49e1a5e75d9dc2c369a6bd29.tar.gz
emacs-b3946c9b9a4a5fcd49e1a5e75d9dc2c369a6bd29.zip
Spelling fixes
-rw-r--r--doc/emacs/trouble.texi2
-rw-r--r--etc/NEWS2
-rw-r--r--lisp/let-alist.el2
-rw-r--r--lisp/progmodes/etags.el2
-rw-r--r--lisp/progmodes/xref.el4
-rw-r--r--lisp/window.el2
-rw-r--r--src/keyboard.c2
-rw-r--r--test/automated/let-alist.el2
8 files changed, 9 insertions, 9 deletions
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
1231@url{http://debbugs.gnu.org/cgi/pkgreport.cgi?which=pkg&data=emacs}. 1231@url{http://debbugs.gnu.org/cgi/pkgreport.cgi?which=pkg&data=emacs}.
1232 1232
1233@item 1233@item
1234@c etc/TOOD not in WWW_GNU_ORG 1234@c etc/TODO not in WWW_GNU_ORG
1235implement a feature listed in the @file{etc/TODO} file in the Emacs 1235implement a feature listed in the @file{etc/TODO} file in the Emacs
1236distribution, and submit a patch. 1236distribution, and submit a patch.
1237 1237
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.
440 440
441*** New key bindings 441*** New key bindings
442`xref-find-definitions' replaces `find-tag' and provides an interface 442`xref-find-definitions' replaces `find-tag' and provides an interface
443to pick one destination among several. Hence, `tags-toop-continue' is 443to pick one destination among several. Hence, `tags-loop-continue' is
444unbound. `xref-pop-marker-stack' replaces `pop-tag-mark', but uses an 444unbound. `xref-pop-marker-stack' replaces `pop-tag-mark', but uses an
445easier binding, which is now unoccupied (`M-,'). 445easier binding, which is now unoccupied (`M-,').
446`xref-find-definitions-other-window' replaces `find-tag-other-window'. 446`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 `.'."
77 (mapcar #'let-alist--deep-dot-search data))))) 77 (mapcar #'let-alist--deep-dot-search data)))))
78 78
79(defun let-alist--access-sexp (symbol variable) 79(defun let-alist--access-sexp (symbol variable)
80 "Return a sexp used to acess SYMBOL inside VARIABLE." 80 "Return a sexp used to access SYMBOL inside VARIABLE."
81 (let* ((clean (let-alist--remove-dot symbol)) 81 (let* ((clean (let-alist--remove-dot symbol))
82 (name (symbol-name clean))) 82 (name (symbol-name clean)))
83 (if (string-match "\\`\\." name) 83 (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)."
2063;;; Xref backend 2063;;; Xref backend
2064 2064
2065;; Stop searching if we find more than xref-limit matches, as the xref 2065;; Stop searching if we find more than xref-limit matches, as the xref
2066;; infrastracture is not designed to handle very long lists. 2066;; infrastructure is not designed to handle very long lists.
2067;; Switching to some kind of lazy list might be better, but hopefully 2067;; Switching to some kind of lazy list might be better, but hopefully
2068;; we hit the limit rarely. 2068;; we hit the limit rarely.
2069(defconst etags--xref-limit 1000) 2069(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'.")
187The return value must be a string or nil. nil means no 187The return value must be a string or nil. nil means no
188identifier at point found. 188identifier at point found.
189 189
190If it's hard to determinte the identifier precisely (e.g. because 190If it's hard to determine the identifier precisely (e.g., because
191it's a method call on unknown type), the implementation can 191it's a method call on unknown type), the implementation can
192return a simple string (such as symbol at point) marked with a 192return a simple string (such as symbol at point) marked with a
193special text property which `xref-find-function' would recognize 193special text property which `xref-find-function' would recognize
@@ -348,7 +348,7 @@ WINDOW controls how the buffer is displayed:
348 (xref--pop-to-location loc window))) 348 (xref--pop-to-location loc window)))
349 349
350(define-derived-mode xref--xref-buffer-mode fundamental-mode "XREF" 350(define-derived-mode xref--xref-buffer-mode fundamental-mode "XREF"
351 "Mode for displaying cross-refenences." 351 "Mode for displaying cross-references."
352 (setq buffer-read-only t)) 352 (setq buffer-read-only t))
353 353
354(let ((map xref--xref-buffer-mode-map)) 354(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'."
7870 ((or (eq mouse-autoselect-window-state 'suspend) 7870 ((or (eq mouse-autoselect-window-state 'suspend)
7871 ;; When the mouse is at its first recorded position, restart 7871 ;; When the mouse is at its first recorded position, restart
7872 ;; delayed autoselection. This works around a scenario with 7872 ;; delayed autoselection. This works around a scenario with
7873 ;; two two-window frames with identic dimensions: Select the 7873 ;; two two-window frames with identical dimensions: select the
7874 ;; first window of the first frame, switch to the second 7874 ;; first window of the first frame, switch to the second
7875 ;; frame, move the mouse to its second window, minimize the 7875 ;; frame, move the mouse to its second window, minimize the
7876 ;; second frame. Now the second window of the first frame 7876 ;; 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;
276/* True if more input was available last time we read an event. 276/* True if more input was available last time we read an event.
277 277
278 Since redisplay can take a significant amount of time and is not 278 Since redisplay can take a significant amount of time and is not
279 indispensible to perform the user's commands, when input arrives 279 indispensable to perform the user's commands, when input arrives
280 "too fast", Emacs skips redisplay. More specifically, if the next 280 "too fast", Emacs skips redisplay. More specifically, if the next
281 command has already been input when we finish the previous command, 281 command has already been input when we finish the previous command,
282 we skip the intermediate redisplay. 282 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 @@
62 '(nil 1 1 2 nil))))) 62 '(nil 1 1 2 nil)))))
63 63
64(ert-deftest let-alist-remove-dot () 64(ert-deftest let-alist-remove-dot ()
65 "Remove firt dot from symbol." 65 "Remove first dot from symbol."
66 (should (equal (let-alist--remove-dot 'hi) 'hi)) 66 (should (equal (let-alist--remove-dot 'hi) 'hi))
67 (should (equal (let-alist--remove-dot '.hi) 'hi)) 67 (should (equal (let-alist--remove-dot '.hi) 'hi))
68 (should (equal (let-alist--remove-dot '..hi) '.hi))) 68 (should (equal (let-alist--remove-dot '..hi) '.hi)))