diff options
| author | Markus Rost | 2002-09-05 18:42:13 +0000 |
|---|---|---|
| committer | Markus Rost | 2002-09-05 18:42:13 +0000 |
| commit | 790f437cec1cc5002006ca352f6d791328919a40 (patch) | |
| tree | 7c85103cc1d9cdfa5b87a118128cab298d977deb | |
| parent | 069352e247986f6251b2c6046782fb903964c698 (diff) | |
| download | emacs-790f437cec1cc5002006ca352f6d791328919a40.tar.gz emacs-790f437cec1cc5002006ca352f6d791328919a40.zip | |
(table-command-prefix): Fix type.
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/textmodes/table.el | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index a6417828ada..b09281ecdf4 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2002-09-05 Markus Rost <rost@math.ohio-state.edu> | ||
| 2 | |||
| 3 | * textmodes/table.el (table-command-prefix): Fix type. | ||
| 4 | |||
| 1 | 2002-09-05 Andre Spiegel <spiegel@gnu.org> | 5 | 2002-09-05 Andre Spiegel <spiegel@gnu.org> |
| 2 | 6 | ||
| 3 | * vc-hooks.el Don't require vc.el at compile-time; it causes | 7 | * vc-hooks.el Don't require vc.el at compile-time; it causes |
| @@ -554,7 +558,7 @@ | |||
| 554 | 558 | ||
| 555 | 2002-08-18 Richard M. Stallman <rms@gnu.org> | 559 | 2002-08-18 Richard M. Stallman <rms@gnu.org> |
| 556 | 560 | ||
| 557 | * table.el: New file. | 561 | * textmodes/table.el: New file. |
| 558 | 562 | ||
| 559 | * font-core.el (font-lock-mode): Set change-major-mode-hook locally. | 563 | * font-core.el (font-lock-mode): Set change-major-mode-hook locally. |
| 560 | 564 | ||
diff --git a/lisp/textmodes/table.el b/lisp/textmodes/table.el index 3390795bceb..1406089b2ed 100644 --- a/lisp/textmodes/table.el +++ b/lisp/textmodes/table.el | |||
| @@ -672,7 +672,7 @@ height." | |||
| 672 | 672 | ||
| 673 | (defcustom table-command-prefix [(control c) (control c)] | 673 | (defcustom table-command-prefix [(control c) (control c)] |
| 674 | "*Key sequence to be used as prefix for table command key bindings." | 674 | "*Key sequence to be used as prefix for table command key bindings." |
| 675 | :type '((vector (list symbol) symbol)) | 675 | :type '(vector (repeat :inline t sexp)) |
| 676 | :tag "Table Command Prefix" | 676 | :tag "Table Command Prefix" |
| 677 | :group 'table) | 677 | :group 'table) |
| 678 | 678 | ||