[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] master df26f09: ; Spelling fixes
From: |
Paul Eggert |
Subject: |
[Emacs-diffs] master df26f09: ; Spelling fixes |
Date: |
Thu, 20 Jul 2017 18:42:17 -0400 (EDT) |
branch: master
commit df26f09f0c62f678fccb7a64dfa7d24202883c2b
Author: Paul Eggert <address@hidden>
Commit: Paul Eggert <address@hidden>
; Spelling fixes
---
doc/lispref/display.texi | 2 +-
lisp/ses.el | 4 ++--
test/lisp/ses-tests.el | 4 ++--
test/manual/image-size-tests.el | 2 +-
4 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/doc/lispref/display.texi b/doc/lispref/display.texi
index 5b8f58c..f5c73e5 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{"^"}.
@defvar bidi-paragraph-separate-re
If address@hidden, this variable's value should be a regular
expression matching a line separates two paragraphs. The regular
-expression is always matched after a newline, so it is best to anch
+expression is always matched after a newline, so it is best to anchor
it, i.e., begin it with a @code{"^"}.
@end defvar
diff --git a/lisp/ses.el b/lisp/ses.el
index ed5e166..8c5ff21 100644
--- a/lisp/ses.el
+++ b/lisp/ses.el
@@ -2526,7 +2526,7 @@ cell formula was unsafe and user declined confirmation."
(setq initial (cons initial (length initial))))
(dolist (key ses-completion-keys)
(define-key ses-mode-edit-map key 'ses-edit-cell-complete-symbol))
- ;; make it globally visible, so that it can be visbile from the
minibuffer.
+ ;; make it globally visible, so that it can be visible from the
minibuffer.
(setq ses--completion-table ses--named-cell-hashmap)
(list row col
(read-from-minibuffer (format "Cell %s: " ses--curcell)
@@ -2670,7 +2670,7 @@ canceled."
default)))
(dolist (key ses-completion-keys)
(define-key ses-mode-edit-map key 'ses-read-printer-complete-symbol))
- ;; make it globally visible, so that it can be visbile from the minibuffer.
+ ;; make it globally visible, so that it can be visible from the minibuffer.
(setq ses--completion-table ses--local-printer-hashmap)
(let ((new (read-from-minibuffer prompt
nil ; Initial contents.
diff --git a/test/lisp/ses-tests.el b/test/lisp/ses-tests.el
index add94ae..8fff6f7 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."
(ert-deftest ses-tests-lowlevel-renamed-cell ()
"Check that renaming A1 to `foo' and setting `foo' to 1 and A2 to (1+ foo),
makes A2 value equal to 2.
This is done using low level functions, `ses-rename-cell' is not
-called but instead we use text replacement in the buffer priorly
-passed in text mode."
+called but instead we use text replacement in the buffer
+previously passed in text mode."
(let ((ses-initial-size '(2 . 1)))
(with-temp-buffer
(ses-mode)
diff --git a/test/manual/image-size-tests.el b/test/manual/image-size-tests.el
index 6721e34..ad43426 100644
--- a/test/manual/image-size-tests.el
+++ b/test/manual/image-size-tests.el
@@ -90,7 +90,7 @@
;; Both max-width/height.
(im-should :h 50 100 :max-width 75 :max-height 100)
(im-should :h 25 50 :max-width 25 :max-height 100)
- ;; :hieght and :max-width (max-width wins).
+ ;; :height and :max-width (max-width wins).
(im-should :h 200 400 :height 400 :max-width 200)
(im-should :h 200 400 :height 500 :max-width 200)
)
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] master df26f09: ; Spelling fixes,
Paul Eggert <=