; Spelling fixes
This commit is contained in:
parent
10e5280bdf
commit
df26f09f0c
4 changed files with 6 additions and 6 deletions
|
@ -7476,7 +7476,7 @@ best to anchor it, i.e., begin it with a @code{"^"}.
|
||||||
@defvar bidi-paragraph-separate-re
|
@defvar bidi-paragraph-separate-re
|
||||||
If non-@code{nil}, this variable's value should be a regular
|
If non-@code{nil}, this variable's value should be a regular
|
||||||
expression matching a line separates two paragraphs. The 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{"^"}.
|
it, i.e., begin it with a @code{"^"}.
|
||||||
@end defvar
|
@end defvar
|
||||||
|
|
||||||
|
|
|
@ -2526,7 +2526,7 @@ cell formula was unsafe and user declined confirmation."
|
||||||
(setq initial (cons initial (length initial))))
|
(setq initial (cons initial (length initial))))
|
||||||
(dolist (key ses-completion-keys)
|
(dolist (key ses-completion-keys)
|
||||||
(define-key ses-mode-edit-map key 'ses-edit-cell-complete-symbol))
|
(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)
|
(setq ses--completion-table ses--named-cell-hashmap)
|
||||||
(list row col
|
(list row col
|
||||||
(read-from-minibuffer (format "Cell %s: " ses--curcell)
|
(read-from-minibuffer (format "Cell %s: " ses--curcell)
|
||||||
|
@ -2670,7 +2670,7 @@ canceled."
|
||||||
default)))
|
default)))
|
||||||
(dolist (key ses-completion-keys)
|
(dolist (key ses-completion-keys)
|
||||||
(define-key ses-mode-edit-map key 'ses-read-printer-complete-symbol))
|
(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)
|
(setq ses--completion-table ses--local-printer-hashmap)
|
||||||
(let ((new (read-from-minibuffer prompt
|
(let ((new (read-from-minibuffer prompt
|
||||||
nil ; Initial contents.
|
nil ; Initial contents.
|
||||||
|
|
|
@ -57,8 +57,8 @@ equal to 2. This is done using interactive calls."
|
||||||
(ert-deftest ses-tests-lowlevel-renamed-cell ()
|
(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.
|
"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
|
This is done using low level functions, `ses-rename-cell' is not
|
||||||
called but instead we use text replacement in the buffer priorly
|
called but instead we use text replacement in the buffer
|
||||||
passed in text mode."
|
previously passed in text mode."
|
||||||
(let ((ses-initial-size '(2 . 1)))
|
(let ((ses-initial-size '(2 . 1)))
|
||||||
(with-temp-buffer
|
(with-temp-buffer
|
||||||
(ses-mode)
|
(ses-mode)
|
||||||
|
|
|
@ -90,7 +90,7 @@
|
||||||
;; Both max-width/height.
|
;; Both max-width/height.
|
||||||
(im-should :h 50 100 :max-width 75 :max-height 100)
|
(im-should :h 50 100 :max-width 75 :max-height 100)
|
||||||
(im-should :h 25 50 :max-width 25 :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 400 :max-width 200)
|
||||||
(im-should :h 200 400 :height 500 :max-width 200)
|
(im-should :h 200 400 :height 500 :max-width 200)
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Reference in a new issue