1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-02 11:21:42 +00:00

(table-command-prefix): Fix type.

This commit is contained in:
Markus Rost 2002-09-05 18:42:13 +00:00
parent 069352e247
commit 790f437cec
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2002-09-05 Markus Rost <rost@math.ohio-state.edu>
* textmodes/table.el (table-command-prefix): Fix type.
2002-09-05 Andre Spiegel <spiegel@gnu.org>
* vc-hooks.el Don't require vc.el at compile-time; it causes
@ -554,7 +558,7 @@
2002-08-18 Richard M. Stallman <rms@gnu.org>
* table.el: New file.
* textmodes/table.el: New file.
* font-core.el (font-lock-mode): Set change-major-mode-hook locally.

View File

@ -672,7 +672,7 @@ height."
(defcustom table-command-prefix [(control c) (control c)]
"*Key sequence to be used as prefix for table command key bindings."
:type '((vector (list symbol) symbol))
:type '(vector (repeat :inline t sexp))
:tag "Table Command Prefix"
:group 'table)