diff options
Diffstat (limited to 'lisp/textmodes/table.el')
-rw-r--r-- | lisp/textmodes/table.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/textmodes/table.el b/lisp/textmodes/table.el index 973f589b204..2c0f918b0de 100644 --- a/lisp/textmodes/table.el +++ b/lisp/textmodes/table.el @@ -4134,7 +4134,7 @@ cache buffer into the designated cell in the table buffer." (currentp (equal cell-coord current-cell-coordinate))) (if currentp (table--goto-coordinate current-coordinate) (table--goto-coordinate (car cell-coord))) - (table-recognize-cell 'froce) + (table-recognize-cell 'force) (let ((table-inhibit-update t)) (table-with-cache-buffer (let ((sticky (and currentp @@ -4147,7 +4147,7 @@ cache buffer into the designated cell in the table buffer." (table--update-cell 'now) )) (table--goto-coordinate current-coordinate) - (table-recognize-cell 'froce))))) + (table-recognize-cell 'force))))) (defun table--update-cell-heightened (&optional now) "Update the contents of the cells that are affected by heightening operation." @@ -4176,7 +4176,7 @@ cache buffer into the designated cell in the table buffer." (currentp (equal cell-coord current-cell-coordinate))) (if currentp (table--goto-coordinate current-coordinate) (table--goto-coordinate (car cell-coord))) - (table-recognize-cell 'froce) + (table-recognize-cell 'force) (let ((table-inhibit-update t)) (table-with-cache-buffer (let ((sticky (and currentp @@ -4189,7 +4189,7 @@ cache buffer into the designated cell in the table buffer." (table--update-cell 'now) )) (table--goto-coordinate current-coordinate) - (table-recognize-cell 'froce))))) + (table-recognize-cell 'force))))) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; |