diff options
Diffstat (limited to 'lisp/textmodes/table.el')
| -rw-r--r-- | lisp/textmodes/table.el | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/lisp/textmodes/table.el b/lisp/textmodes/table.el index 93ea3cc0c14..7b13d498b2e 100644 --- a/lisp/textmodes/table.el +++ b/lisp/textmodes/table.el | |||
| @@ -1,11 +1,11 @@ | |||
| 1 | ;;; table.el --- create and edit WYSIWYG text based embedded tables | 1 | ;;; table.el --- create and edit WYSIWYG text based embedded tables |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2000, 2001, 2002 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2000, 01, 02, 03, 04 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Keywords: wp, convenience | 5 | ;; Keywords: wp, convenience |
| 6 | ;; Author: Takaaki Ota <Takaaki.Ota@am.sony.com> | 6 | ;; Author: Takaaki Ota <Takaaki.Ota@am.sony.com> |
| 7 | ;; Created: Sat Jul 08 2000 13:28:45 (PST) | 7 | ;; Created: Sat Jul 08 2000 13:28:45 (PST) |
| 8 | ;; Revised: Tue Dec 09 2003 14:36:50 (PST) | 8 | ;; Revised: Tue Jun 01 2004 11:36:39 (PDT) |
| 9 | 9 | ||
| 10 | ;; This file is part of GNU Emacs. | 10 | ;; This file is part of GNU Emacs. |
| 11 | 11 | ||
| @@ -1410,6 +1410,8 @@ the last cache point coordinate." | |||
| 1410 | end-of-buffer | 1410 | end-of-buffer |
| 1411 | forward-word | 1411 | forward-word |
| 1412 | backward-word | 1412 | backward-word |
| 1413 | forward-sentence | ||
| 1414 | backward-sentence | ||
| 1413 | forward-paragraph | 1415 | forward-paragraph |
| 1414 | backward-paragraph)) | 1416 | backward-paragraph)) |
| 1415 | 1417 | ||
| @@ -1434,9 +1436,18 @@ the last cache point coordinate." | |||
| 1434 | (cons (cons command func-symbol) | 1436 | (cons (cons command func-symbol) |
| 1435 | table-command-remap-alist)))) | 1437 | table-command-remap-alist)))) |
| 1436 | '(kill-region | 1438 | '(kill-region |
| 1439 | kill-ring-save | ||
| 1437 | delete-region | 1440 | delete-region |
| 1438 | copy-region-as-kill | 1441 | copy-region-as-kill |
| 1439 | kill-line)) | 1442 | kill-line |
| 1443 | kill-word | ||
| 1444 | backward-kill-word | ||
| 1445 | kill-sentence | ||
| 1446 | backward-kill-sentence | ||
| 1447 | kill-paragraph | ||
| 1448 | backward-kill-paragraph | ||
| 1449 | kill-sexp | ||
| 1450 | backward-kill-sexp)) | ||
| 1440 | 1451 | ||
| 1441 | ;; Pasting Group | 1452 | ;; Pasting Group |
| 1442 | (mapcar | 1453 | (mapcar |