From: Chong Yidong Date: Tue, 30 Dec 2008 16:37:13 +0000 (+0000) Subject: (table-capture): Fix symbol quoting typo. X-Git-Tag: emacs-pretest-23.0.90~795 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ba952214229c1ce4170b5cb125397c988f67d99f;p=emacs.git (table-capture): Fix symbol quoting typo. --- diff --git a/lisp/textmodes/table.el b/lisp/textmodes/table.el index 3d0f0f354b9..d41719c8ed7 100644 --- a/lisp/textmodes/table.el +++ b/lisp/textmodes/table.el @@ -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)))