aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/idlwave.el
diff options
context:
space:
mode:
authorGlenn Morris <[email protected]>2009-01-09 04:23:38 +0000
committerGlenn Morris <[email protected]>2009-01-09 04:23:38 +0000
commit1ba983e8d9da561ccbdf15fb1544895fad40cce8 (patch)
tree88210d37a85f0ef4a8d3341074b185c9d0187dad /lisp/progmodes/idlwave.el
parente93c003eb15f85f744a39c28a8fb43b8c6da9904 (diff)
Replace last-command-char with last-command-event.
Diffstat (limited to 'lisp/progmodes/idlwave.el')
-rw-r--r--lisp/progmodes/idlwave.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/progmodes/idlwave.el b/lisp/progmodes/idlwave.el
index ca0ba3137b..b9ee458d2e 100644
--- a/lisp/progmodes/idlwave.el
+++ b/lisp/progmodes/idlwave.el
@@ -1,7 +1,7 @@
;; idlwave.el --- IDL editing mode for GNU Emacs
-;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
-;; Free Software Foundation, Inc.
+;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
+;; 2008, 2009 Free Software Foundation, Inc.
;; Authors: J.D. Smith <[email protected]>
;; Carsten Dominik <[email protected]>
@@ -2119,7 +2119,7 @@ Returns point if comment found and nil otherwise."
"Insert quote and show matching quote if this is end of a string."
(interactive)
(let ((bq (idlwave-in-quote))
- (inq last-command-char))
+ (inq last-command-event))
(if (and bq (not (idlwave-in-comment)))
(let ((delim (char-after bq)))
(insert inq)