aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggert2012-07-21 21:11:49 -0700
committerPaul Eggert2012-07-21 21:11:49 -0700
commit494913d6debe4b2507d37a165a8be754ab64dbb4 (patch)
treed92923ab73f3bbea0276b06766d8e9993cc897fb
parentfb9ea40fc511eb7e42a512ada9e369cce1bfd932 (diff)
downloademacs-494913d6debe4b2507d37a165a8be754ab64dbb4.tar.gz
emacs-494913d6debe4b2507d37a165a8be754ab64dbb4.zip
Spelling fixes.
-rw-r--r--etc/NEWS2
-rw-r--r--lisp/ses.el6
2 files changed, 4 insertions, 4 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 2889367c605..0f903c790c2 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -354,7 +354,7 @@ channel keys found, if any.
354 354
355*** `dired-do-async-shell-command' executes each file sequentially 355*** `dired-do-async-shell-command' executes each file sequentially
356if the command ends in `;' (when operating on multiple files). 356if the command ends in `;' (when operating on multiple files).
357Othwerwise, it executes the command on each file in parallel. 357Otherwise, it executes the command on each file in parallel.
358 358
359** FFAP 359** FFAP
360 360
diff --git a/lisp/ses.el b/lisp/ses.el
index 14294103d51..8181c6132a9 100644
--- a/lisp/ses.el
+++ b/lisp/ses.el
@@ -3213,7 +3213,7 @@ highlighted range in the spreadsheet."
3213 (col (cdr rowcol)) 3213 (col (cdr rowcol))
3214 (cell (ses-get-cell row col))) 3214 (cell (ses-get-cell row col)))
3215 (put new-name 'ses-cell rowcol) 3215 (put new-name 'ses-cell rowcol)
3216 ;; replace name by new name in formula of cells refering to renamed cell 3216 ;; Replace name by new name in formula of cells referring to renamed cell.
3217 (dolist (ref (ses-cell-references cell)) 3217 (dolist (ref (ses-cell-references cell))
3218 (let* ((x (ses-sym-rowcol ref)) 3218 (let* ((x (ses-sym-rowcol ref))
3219 (xcell (ses-get-cell (car x) (cdr x)))) 3219 (xcell (ses-get-cell (car x) (cdr x))))
@@ -3228,8 +3228,8 @@ highlighted range in the spreadsheet."
3228 (let* ((x (ses-sym-rowcol ref)) 3228 (let* ((x (ses-sym-rowcol ref))
3229 (xrow (car x)) 3229 (xrow (car x))
3230 (xcol (cdr x))) 3230 (xcol (cdr x)))
3231 (ses-set-cell xrow xcol 'references 3231 (ses-set-cell xrow xcol 'references
3232 (cons new-name (delq ses--curcell 3232 (cons new-name (delq ses--curcell
3233 (ses-cell-references xrow xcol)))))) 3233 (ses-cell-references xrow xcol))))))
3234 (push new-name ses--renamed-cell-symb-list) 3234 (push new-name ses--renamed-cell-symb-list)
3235 (set new-name (symbol-value ses--curcell)) 3235 (set new-name (symbol-value ses--curcell))