aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggert2013-07-20 21:22:33 -0700
committerPaul Eggert2013-07-20 21:22:33 -0700
commit02c66599e3b30ef2119d5307099f16e2b53018da (patch)
tree4c38f173f03fab50b33a3ef8678bddc6edc6d9b5
parent763a086dc75498d173601db882ec59b739cab17f (diff)
downloademacs-02c66599e3b30ef2119d5307099f16e2b53018da.tar.gz
emacs-02c66599e3b30ef2119d5307099f16e2b53018da.zip
Spelling fixes.
-rw-r--r--lisp/desktop.el2
-rw-r--r--lisp/frame.el2
-rw-r--r--src/eval.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/lisp/desktop.el b/lisp/desktop.el
index 8d84356fb21..e8fe742617e 100644
--- a/lisp/desktop.el
+++ b/lisp/desktop.el
@@ -1368,7 +1368,7 @@ Internal use only."
1368 (when (eq (cdr (assq 'minibuffer frame-cfg)) 'only) 1368 (when (eq (cdr (assq 'minibuffer frame-cfg)) 'only)
1369 (setq frame-cfg (append '((tool-bar-lines . 0) (menu-bar-lines . 0)) 1369 (setq frame-cfg (append '((tool-bar-lines . 0) (menu-bar-lines . 0))
1370 frame-cfg)))) 1370 frame-cfg))))
1371 (t ;; Frame depends on other frame's minibufer window. 1371 (t ;; Frame depends on other frame's minibuffer window.
1372 (let ((mb-frame (cdr (assq (cadr d-mini) frame-mb-map)))) 1372 (let ((mb-frame (cdr (assq (cadr d-mini) frame-mb-map))))
1373 (unless (frame-live-p mb-frame) 1373 (unless (frame-live-p mb-frame)
1374 (error "Minibuffer frame %s not found" (cadr d-mini))) 1374 (error "Minibuffer frame %s not found" (cadr d-mini)))
diff --git a/lisp/frame.el b/lisp/frame.el
index ed47afa4b94..71e7cc10de2 100644
--- a/lisp/frame.el
+++ b/lisp/frame.el
@@ -1740,7 +1740,7 @@ frame receives focus."
1740 (setq blink-cursor-idle-timer nil)))) 1740 (setq blink-cursor-idle-timer nil))))
1741 1741
1742(defun blink-cursor-check () 1742(defun blink-cursor-check ()
1743 "Check if cursot blinking shall be restarted. 1743 "Check if cursor blinking shall be restarted.
1744This is done when a frame gets focus. Blink timers may be stopped by 1744This is done when a frame gets focus. Blink timers may be stopped by
1745`blink-cursor-suspend'." 1745`blink-cursor-suspend'."
1746 (when (and blink-cursor-mode 1746 (when (and blink-cursor-mode
diff --git a/src/eval.c b/src/eval.c
index 23834cb54f6..121222728c6 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -459,7 +459,7 @@ usage: (progn BODY...) */)
459 return val; 459 return val;
460} 460}
461 461
462/* Evaluate BODY sequentually, discarding its value. Suitable for 462/* Evaluate BODY sequentially, discarding its value. Suitable for
463 record_unwind_protect. */ 463 record_unwind_protect. */
464 464
465void 465void