aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggert2017-07-20 15:40:48 -0700
committerPaul Eggert2017-07-20 15:42:12 -0700
commitdf26f09f0c62f678fccb7a64dfa7d24202883c2b (patch)
treed61cbdff6cbc2e63e9923078f165db2c3f2364c8
parent10e5280bdf10b6b412ecb42ec18710e6d9606dd5 (diff)
downloademacs-df26f09f0c62f678fccb7a64dfa7d24202883c2b.tar.gz
emacs-df26f09f0c62f678fccb7a64dfa7d24202883c2b.zip
; Spelling fixes
-rw-r--r--doc/lispref/display.texi2
-rw-r--r--lisp/ses.el4
-rw-r--r--test/lisp/ses-tests.el4
-rw-r--r--test/manual/image-size-tests.el2
4 files changed, 6 insertions, 6 deletions
diff --git a/doc/lispref/display.texi b/doc/lispref/display.texi
index 5b8f58c1fd5..f5c73e55a4f 100644
--- a/doc/lispref/display.texi
+++ b/doc/lispref/display.texi
@@ -7476,7 +7476,7 @@ best to anchor it, i.e., begin it with a @code{"^"}.
7476@defvar bidi-paragraph-separate-re 7476@defvar bidi-paragraph-separate-re
7477If non-@code{nil}, this variable's value should be a regular 7477If non-@code{nil}, this variable's value should be a regular
7478expression matching a line separates two paragraphs. The regular 7478expression matching a line separates two paragraphs. The regular
7479expression is always matched after a newline, so it is best to anch 7479expression is always matched after a newline, so it is best to anchor
7480it, i.e., begin it with a @code{"^"}. 7480it, i.e., begin it with a @code{"^"}.
7481@end defvar 7481@end defvar
7482 7482
diff --git a/lisp/ses.el b/lisp/ses.el
index ed5e166d952..8c5ff2136f9 100644
--- a/lisp/ses.el
+++ b/lisp/ses.el
@@ -2526,7 +2526,7 @@ cell formula was unsafe and user declined confirmation."
2526 (setq initial (cons initial (length initial)))) 2526 (setq initial (cons initial (length initial))))
2527 (dolist (key ses-completion-keys) 2527 (dolist (key ses-completion-keys)
2528 (define-key ses-mode-edit-map key 'ses-edit-cell-complete-symbol)) 2528 (define-key ses-mode-edit-map key 'ses-edit-cell-complete-symbol))
2529 ;; make it globally visible, so that it can be visbile from the minibuffer. 2529 ;; make it globally visible, so that it can be visible from the minibuffer.
2530 (setq ses--completion-table ses--named-cell-hashmap) 2530 (setq ses--completion-table ses--named-cell-hashmap)
2531 (list row col 2531 (list row col
2532 (read-from-minibuffer (format "Cell %s: " ses--curcell) 2532 (read-from-minibuffer (format "Cell %s: " ses--curcell)
@@ -2670,7 +2670,7 @@ canceled."
2670 default))) 2670 default)))
2671 (dolist (key ses-completion-keys) 2671 (dolist (key ses-completion-keys)
2672 (define-key ses-mode-edit-map key 'ses-read-printer-complete-symbol)) 2672 (define-key ses-mode-edit-map key 'ses-read-printer-complete-symbol))
2673 ;; make it globally visible, so that it can be visbile from the minibuffer. 2673 ;; make it globally visible, so that it can be visible from the minibuffer.
2674 (setq ses--completion-table ses--local-printer-hashmap) 2674 (setq ses--completion-table ses--local-printer-hashmap)
2675 (let ((new (read-from-minibuffer prompt 2675 (let ((new (read-from-minibuffer prompt
2676 nil ; Initial contents. 2676 nil ; Initial contents.
diff --git a/test/lisp/ses-tests.el b/test/lisp/ses-tests.el
index add94ae98f6..8fff6f73520 100644
--- a/test/lisp/ses-tests.el
+++ b/test/lisp/ses-tests.el
@@ -57,8 +57,8 @@ equal to 2. This is done using interactive calls."
57(ert-deftest ses-tests-lowlevel-renamed-cell () 57(ert-deftest ses-tests-lowlevel-renamed-cell ()
58 "Check that renaming A1 to `foo' and setting `foo' to 1 and A2 to (1+ foo), makes A2 value equal to 2. 58 "Check that renaming A1 to `foo' and setting `foo' to 1 and A2 to (1+ foo), makes A2 value equal to 2.
59This is done using low level functions, `ses-rename-cell' is not 59This is done using low level functions, `ses-rename-cell' is not
60called but instead we use text replacement in the buffer priorly 60called but instead we use text replacement in the buffer
61passed in text mode." 61previously passed in text mode."
62 (let ((ses-initial-size '(2 . 1))) 62 (let ((ses-initial-size '(2 . 1)))
63 (with-temp-buffer 63 (with-temp-buffer
64 (ses-mode) 64 (ses-mode)
diff --git a/test/manual/image-size-tests.el b/test/manual/image-size-tests.el
index 6721e348e12..ad43426dd20 100644
--- a/test/manual/image-size-tests.el
+++ b/test/manual/image-size-tests.el
@@ -90,7 +90,7 @@
90 ;; Both max-width/height. 90 ;; Both max-width/height.
91 (im-should :h 50 100 :max-width 75 :max-height 100) 91 (im-should :h 50 100 :max-width 75 :max-height 100)
92 (im-should :h 25 50 :max-width 25 :max-height 100) 92 (im-should :h 25 50 :max-width 25 :max-height 100)
93 ;; :hieght and :max-width (max-width wins). 93 ;; :height and :max-width (max-width wins).
94 (im-should :h 200 400 :height 400 :max-width 200) 94 (im-should :h 200 400 :height 400 :max-width 200)
95 (im-should :h 200 400 :height 500 :max-width 200) 95 (im-should :h 200 400 :height 500 :max-width 200)
96 ) 96 )