]> git.eshelyaron.com Git - emacs.git/commitdiff
; Spelling fixes
authorPaul Eggert <eggert@cs.ucla.edu>
Thu, 20 Jul 2017 22:40:48 +0000 (15:40 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Thu, 20 Jul 2017 22:42:12 +0000 (15:42 -0700)
doc/lispref/display.texi
lisp/ses.el
test/lisp/ses-tests.el
test/manual/image-size-tests.el

index 5b8f58c1fd55b3ff649ad7c86e90cd7f7e2475de..f5c73e55a4f8cb072de6d043d3f3ae51e15e2b61 100644 (file)
@@ -7476,7 +7476,7 @@ best to anchor it, i.e., begin it with a @code{"^"}.
 @defvar bidi-paragraph-separate-re
 If non-@code{nil}, 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
 
index ed5e166d9521fc2af3e2cbb6070d8876b0826aec..8c5ff2136f9616cb4e0a2ffbe203c27c399b32af 100644 (file)
@@ -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.
index add94ae98f60af6506244bdde3d68bbbc21bcc62..8fff6f73520f52bd68fe7bb1dbe32a3d8ff45ae3 100644 (file)
@@ -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)
index 6721e348e12fe992121c26612ec2e6714680134a..ad43426dd20c76d1fa79b2858168f3a963aab592 100644 (file)
@@ -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)
   )