From: Markus Rost Date: Mon, 21 Jul 2003 21:36:55 +0000 (+0000) Subject: (idlwave-comment-indent-char): Fix default value using ?\s. X-Git-Tag: ttn-vms-21-2-B4~9284 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=93af03f0a1cd3b8bd49a70266c8383f7760b9278;p=emacs.git (idlwave-comment-indent-char): Fix default value using ?\s. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 5cdad6ccb6f..0e6e3f3408e 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2003-07-21 Markus Rost + + * progmodes/idlwave.el (idlwave-comment-indent-char): Fix default + value using ?\s. + 2003-07-21 John Paul Wallington * subr.el (with-selected-window): Add closing paren. diff --git a/lisp/progmodes/idlwave.el b/lisp/progmodes/idlwave.el index b1c3216a215..cd7cee73118 100644 --- a/lisp/progmodes/idlwave.el +++ b/lisp/progmodes/idlwave.el @@ -5,7 +5,7 @@ ;; Chris Chase ;; Maintainer: J.D. Smith ;; 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.")