diff options
author | Glenn Morris <rgm@gnu.org> | 2009-01-09 04:44:15 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2009-01-09 04:44:15 +0000 |
commit | 8989a9203f73473569ddf83e505a846609def407 (patch) | |
tree | 2dcc35b588e98388ef66ef39157e9d17290df217 /lisp/complete.el | |
parent | a4d9b7bca3dc69efe89eecbd81ed96859f7cd818 (diff) | |
download | emacs-8989a9203f73473569ddf83e505a846609def407.tar.gz |
Replace last-command-char with last-command-event.
Diffstat (limited to 'lisp/complete.el')
-rw-r--r-- | lisp/complete.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/complete.el b/lisp/complete.el index ecffb660a26..207b7f549d8 100644 --- a/lisp/complete.el +++ b/lisp/complete.el @@ -290,7 +290,7 @@ See `PC-complete' for details. This can be bound to other keys, like `-' and `.', if you wish." (interactive) (if (eq (PC-was-meta-key) PC-meta-flag) - (if (eq last-command-char ? ) + (if (eq last-command-event ? ) (minibuffer-complete-word) (self-insert-command 1)) (self-insert-command 1) |