From: Michal Sojka Date: Sat, 23 Nov 2019 22:32:39 +0000 (+0100) Subject: Fix preserving cell boundaries in table.el after X-Git-Tag: emacs-27.0.90~478 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=63e7dd4360bd687ea518138b63ef745e30099f4c;p=emacs.git Fix preserving cell boundaries in table.el after * lisp/textmodes/table.el (table-command-remap-alist): Add entry for 'delete-forward-char'. (Bug#38353) --- diff --git a/lisp/textmodes/table.el b/lisp/textmodes/table.el index 92aaa46ad6d..56a81142ab4 100644 --- a/lisp/textmodes/table.el +++ b/lisp/textmodes/table.el @@ -957,6 +957,7 @@ This is always set to nil at the entry to `table-with-cache-buffer' before execu (completion-separator-self-insert-autofilling . *table--cell-self-insert-command) (completion-separator-self-insert-command . *table--cell-self-insert-command) (delete-char . *table--cell-delete-char) + (delete-forward-char . *table--cell-delete-char) (delete-backward-char . *table--cell-delete-backward-char) (backward-delete-char . *table--cell-delete-backward-char) (backward-delete-char-untabify . *table--cell-delete-backward-char)