summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2003-02-14 09:59:13 +0000
committerJuanma Barranquero <lekktu@gmail.com>2003-02-14 09:59:13 +0000
commitbd6c3bb9693669509c8236b2d2dd6d5c0b8db2cf (patch)
treef99d100c9a2063221a3625415dad1f2bbbb9f3d8
parent77e632b06d723dcc34421db14b9a23501d933d9c (diff)
downloademacs-bd6c3bb9693669509c8236b2d2dd6d5c0b8db2cf.tar.gz
(idlwave-show-begin): Fix use of character constant.
-rw-r--r--lisp/progmodes/idlwave.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/idlwave.el b/lisp/progmodes/idlwave.el
index 61f5e0ab615..bdd29124351 100644
--- a/lisp/progmodes/idlwave.el
+++ b/lisp/progmodes/idlwave.el
@@ -5,7 +5,7 @@
;; Chris Chase <chase@att.com>
;; Maintainer: J.D. Smith <jdsmith@as.arizona.edu>
;; Version: 4.15
-;; Date: $Date: 2002/09/13 22:19:48 $
+;; Date: $Date: 2002/10/18 08:12:35 $
;; Keywords: languages
;; This file is part of GNU Emacs.
@@ -2100,7 +2100,7 @@ An END token must be preceded by whitespace."
Also checks if the correct end statement has been used."
;; All end statements are reserved words
;; Re-indent end line
- (insert-char ?\ 1) ;; So indent, etc. work well
+ (insert-char ?\ 1) ;; So indent, etc. work well
(backward-char 1)
(let* ((pos (point-marker))
(last-abbrev-marker (copy-marker last-abbrev-location))