changeset 49790:481b30daf13f

(idlwave-show-begin): Fix use of character constant.
author Juanma Barranquero <lekktu@gmail.com>
date Fri, 14 Feb 2003 09:59:13 +0000
parents aca582e2f94c
children ee6f8dc4fe37
files lisp/progmodes/idlwave.el
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/progmodes/idlwave.el	Fri Feb 14 09:58:50 2003 +0000
+++ b/lisp/progmodes/idlwave.el	Fri Feb 14 09:59:13 2003 +0000
@@ -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 @@
 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))