]> git.eshelyaron.com Git - emacs.git/commitdiff
(table-command-prefix): Fix type.
authorMarkus Rost <rost@math.uni-bielefeld.de>
Thu, 5 Sep 2002 18:42:13 +0000 (18:42 +0000)
committerMarkus Rost <rost@math.uni-bielefeld.de>
Thu, 5 Sep 2002 18:42:13 +0000 (18:42 +0000)
lisp/ChangeLog
lisp/textmodes/table.el

index a6417828ada2d9e1b8f7203b5abcd9bad866608e..b09281ecdf41f5e7b7683185233bda6ae8ed3cb6 100644 (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 
 
 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.
 
index 3390795bcebf1a198cc84d2541186b423af61f01..1406089b2ed37043d4fa15fd96d7ee157ad77a3f 100644 (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)