]> git.eshelyaron.com Git - emacs.git/commitdiff
(idlwave-comment-indent-char): Fix default value using ?\s.
authorMarkus Rost <rost@math.uni-bielefeld.de>
Mon, 21 Jul 2003 21:36:55 +0000 (21:36 +0000)
committerMarkus Rost <rost@math.uni-bielefeld.de>
Mon, 21 Jul 2003 21:36:55 +0000 (21:36 +0000)
lisp/ChangeLog
lisp/progmodes/idlwave.el

index 5cdad6ccb6f81eb8bedbeedcde80f1043c03b47c..0e6e3f3408e2f81c753b007a769e524cf18c9705 100644 (file)
@@ -1,3 +1,8 @@
+2003-07-21  Markus Rost  <rost@math.ohio-state.edu>
+
+       * progmodes/idlwave.el (idlwave-comment-indent-char): Fix default
+       value using ?\s.
+
 2003-07-21  John Paul Wallington  <jpw@gnu.org>
 
        * subr.el (with-selected-window): Add closing paren.
index b1c3216a215cb62d9d12fbc55679e9c55b77c7e4..cd7cee73118247f14a7ec5f1acabc1a93b536e3a 100644 (file)
@@ -5,7 +5,7 @@
 ;;         Chris Chase <chase@att.com>
 ;; Maintainer: J.D. Smith <jdsmith@as.arizona.edu>
 ;; Version: 4.15
-;; Date: $Date: 2003/02/14 09:59:13 $
+;; Date: $Date: 2003/05/06 17:40:52 $
 ;; Keywords: languages
 
 ;; This file is part of GNU Emacs.
@@ -1399,7 +1399,7 @@ the leftover unidentified statements containing an equal sign."  )
 ;; Note that this is documented in the v18 manuals as being a string
 ;; of length one rather than a single character.
 ;; The code in this file accepts either format for compatibility.
-(defvar idlwave-comment-indent-char ?\
+(defvar idlwave-comment-indent-char ?\s
   "Character to be inserted for IDL comment indentation.
 Normally a space.")