[A68-RECUTILS][COMMITTED] rec-writer.a68: fix writing of comments

Jose E. Marchesi jemarch@gnu.org
Fri Apr 4 20:49:20 GMT 2025


---
 src/rec-writer.a68 | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/rec-writer.a68 b/src/rec-writer.a68
index b0ce7b5..28f38fe 100644
--- a/src/rec-writer.a68
+++ b/src/rec-writer.a68
@@ -167,8 +167,8 @@ BEGIN
       PROC write comment = (REC_CMNT comment) VOID:
          IF mode OF writer = rec writer sexp
          THEN out ("(comment """ + sexpcape (content OF comment) + """)")
-         ELSE out ("# ");
-              out with line breaks (content OF comment, "# ")
+         ELSE out ("#");
+              out with line breaks (content OF comment, "#")
          FI;
 
       # Write out the data in the given multiple.  #
-- 
2.30.2



More information about the Algol68 mailing list