From 09aebdb57289770fa5b3e133c15d092152920880 Mon Sep 17 00:00:00 2001 From: "Greg J. Badros" Date: Wed, 15 Mar 2000 16:09:58 +0000 Subject: [PATCH] * guile-snarf.awk.in: Replace docstring line-ending \n" and \n\n" with nothing and \n, respectively. Thanks Keisuke Nishida for noticing this problem. --- libguile/guile-snarf.awk.in | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libguile/guile-snarf.awk.in b/libguile/guile-snarf.awk.in index e99ed18f8..9cadd0440 100644 --- a/libguile/guile-snarf.awk.in +++ b/libguile/guile-snarf.awk.in @@ -56,7 +56,9 @@ BEGIN { FS="|"; gsub(/.*@@@/,"",copy); sub(/^[ \t]*"?/,"", copy); sub(/\"?[ \t]*@!!!.*$/,"", copy); - gsub(/\\\"/,"\"",copy); + gsub(/\\n\\n"?/,"\n",copy); + gsub(/\\n"?[ \t]*$/,"",copy); + gsub(/\\\"[ \t]*$/,"\"",copy); gsub(/[ \t]*$/,"", copy); if (copy != "") { print copy > dot_doc_file } } -- 2.20.1