aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTino Calancha2016-05-07 11:19:26 +0300
committerEli Zaretskii2016-05-07 11:19:26 +0300
commit4a6d39b395bda91a497f8e81afec4339ecf5b49f (patch)
tree04b9868f42ccc909dc70239bbffad7be1ae4afa1
parentfa6a6edd1d670e2826186ee943ae7ca083771801 (diff)
downloademacs-4a6d39b395bda91a497f8e81afec4339ecf5b49f.tar.gz
emacs-4a6d39b395bda91a497f8e81afec4339ecf5b49f.zip
Make 'backtab' work in table-mode on text terminals
* lisp/textmodes/table.el (table-cell-bindings): Bind 'backtab' explicitly. (Bug#23456)
-rw-r--r--lisp/textmodes/table.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/textmodes/table.el b/lisp/textmodes/table.el
index 653db83107d..3502adf5e29 100644
--- a/lisp/textmodes/table.el
+++ b/lisp/textmodes/table.el
@@ -936,6 +936,7 @@ This is always set to nil at the entry to `table-with-cache-buffer' before execu
936 ([(shift backtab)] . table-backward-cell) ; for HPUX console keyboard 936 ([(shift backtab)] . table-backward-cell) ; for HPUX console keyboard
937 ([(shift iso-lefttab)] . table-backward-cell) ; shift-tab on a microsoft natural keyboard and redhat linux 937 ([(shift iso-lefttab)] . table-backward-cell) ; shift-tab on a microsoft natural keyboard and redhat linux
938 ([(shift tab)] . table-backward-cell) 938 ([(shift tab)] . table-backward-cell)
939 ([backtab] . table-backward-cell) ; for terminals (e.g., xterm)
939 ([return] . *table--cell-newline) 940 ([return] . *table--cell-newline)
940 ([(control m)] . *table--cell-newline) 941 ([(control m)] . *table--cell-newline)
941 ([(control j)] . *table--cell-newline-and-indent) 942 ([(control j)] . *table--cell-newline-and-indent)