diff options
| author | Glenn Morris <rgm@gnu.org> | 2009-01-09 04:23:38 +0000 |
|---|---|---|
| committer | Glenn Morris <rgm@gnu.org> | 2009-01-09 04:23:38 +0000 |
| commit | 1ba983e8d9da561ccbdf15fb1544895fad40cce8 (patch) | |
| tree | 88210d37a85f0ef4a8d3341074b185c9d0187dad /lisp/textmodes/table.el | |
| parent | e93c003eb15f85f744a39c28a8fb43b8c6da9904 (diff) | |
| download | emacs-1ba983e8d9da561ccbdf15fb1544895fad40cce8.tar.gz | |
Replace last-command-char with last-command-event.
Diffstat (limited to 'lisp/textmodes/table.el')
| -rw-r--r-- | lisp/textmodes/table.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/textmodes/table.el b/lisp/textmodes/table.el index 45c8cb2999d..fbfdf573640 100644 --- a/lisp/textmodes/table.el +++ b/lisp/textmodes/table.el @@ -6,7 +6,7 @@ ;; Keywords: wp, convenience ;; Author: Takaaki Ota <Takaaki.Ota@am.sony.com> ;; Created: Sat Jul 08 2000 13:28:45 (PST) -;; Revised: Wed Jan 03 2007 13:23:46 (PST) +;; Revised: Thu Jan 08 2009 20:17:04 (PST) ;; This file is part of GNU Emacs. @@ -3943,7 +3943,7 @@ converts a table into plain text without frames. It is a companion to (defun *table--cell-self-insert-command () "Table cell version of `self-insert-command'." (interactive "*") - (let ((char (table--unibyte-char-to-multibyte last-command-char))) + (let ((char (table--unibyte-char-to-multibyte last-command-event))) (if (eq buffer-undo-list t) nil (if (not (eq last-command this-command)) (setq table-cell-self-insert-command-count 0) |
