Mercurial > emacs
changeset 51987:a550746b82fb
(idlwave-comment-indent-char): Fix default value using ?\s.
author | Markus Rost <rost@math.uni-bielefeld.de> |
---|---|
date | Mon, 21 Jul 2003 21:36:29 +0000 |
parents | 1bf6c9e00da0 |
children | 307806e982a5 |
files | lisp/progmodes/idlwave.el |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/progmodes/idlwave.el Mon Jul 21 20:03:35 2003 +0000 +++ b/lisp/progmodes/idlwave.el Mon Jul 21 21:36:29 2003 +0000 @@ -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 @@ ;; 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.")