(table-capture): Fix symbol quoting typo.

This commit is contained in:
Chong Yidong 2008-12-30 16:37:13 +00:00
parent b0f0f3eb6d
commit ba95221422

View file

@ -3738,7 +3738,7 @@ companion command to `table-capture' this way.
(table--read-from-minibuffer '("Minimum cell width" . table-capture-min-cell-width-history)))
(if (and (not (string= col-delim-regexp "")) (string= row-delim-regexp ""))
(string-to-number
(table--read-from-minibuffer '("Number of columns" . 'table-capture-columns-history)))
(table--read-from-minibuffer '("Number of columns" . table-capture-columns-history)))
nil)
)))
(if (> beg end) (let ((tmp beg)) (setq beg end) (setq end tmp)))