]> git.eshelyaron.com Git - emacs.git/commitdiff
(idlwave-show-begin): Fix use of character constant.
authorJuanma Barranquero <lekktu@gmail.com>
Fri, 14 Feb 2003 09:59:13 +0000 (09:59 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Fri, 14 Feb 2003 09:59:13 +0000 (09:59 +0000)
lisp/progmodes/idlwave.el

index 61f5e0ab61559038e4e58ba506a3f149958bb0c2..bdd291243519f828c94cf3a0654d8dae2b86c353 100644 (file)
@@ -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))