summaryrefslogtreecommitdiff
path: root/lisp/progmodes/idlwave.el
diff options
context:
space:
mode:
authorMattias EngdegÄrd <mattiase@acm.org>2022-06-03 11:05:18 +0200
committerMattias EngdegÄrd <mattiase@acm.org>2022-06-03 11:10:38 +0200
commite48c9181b1c103b42032a5fb6547184da75bd773 (patch)
tree9feae7b37511605b35e256d5c80cd913db6e6fc6 /lisp/progmodes/idlwave.el
parent4f56ca63761b0270edb58734ce7ac4a3c800bb1b (diff)
downloademacs-e48c9181b1c103b42032a5fb6547184da75bd773.tar.gz
Fix wrong value in idlwave-comment-indent-char
* lisp/progmodes/idlwave.el (idlwave-comment-indent-char): Use a space since that is clearly what was meant. ?\ at the end of a line (ie, ?\LF) never was well-defined and produced -1 most of the time, but will soon raise an error (bug#55738). This doesn't matter much becaue this variable is unused.
Diffstat (limited to 'lisp/progmodes/idlwave.el')
-rw-r--r--lisp/progmodes/idlwave.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/idlwave.el b/lisp/progmodes/idlwave.el
index e3985db64ab..edb53793e64 100644
--- a/lisp/progmodes/idlwave.el
+++ b/lisp/progmodes/idlwave.el
@@ -1353,7 +1353,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.")