summaryrefslogtreecommitdiff
path: root/lisp/textmodes
diff options
context:
space:
mode:
authorStefan Kangas <stefankangas@gmail.com>2024-05-27 10:11:15 +0200
committerStefan Kangas <stefankangas@gmail.com>2024-05-27 10:11:15 +0200
commit225b426f256ba00aff7669ad18a5c85f86e22f67 (patch)
tree5453144d594bfa867b39fd965c7b41f7492b428e /lisp/textmodes
parent21b2954c90eb5b6fa1bbfeda4c5074a0bdc53ba8 (diff)
downloademacs-225b426f256ba00aff7669ad18a5c85f86e22f67.tar.gz
emacs-225b426f256ba00aff7669ad18a5c85f86e22f67.tar.bz2
emacs-225b426f256ba00aff7669ad18a5c85f86e22f67.zip
; Fix typos
Diffstat (limited to 'lisp/textmodes')
-rw-r--r--lisp/textmodes/table.el8
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)))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;