1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-18 01:30:27 +02:00

* Minor docstring updates.

This commit is contained in:
Neil Jerram 2001-03-23 17:24:28 +00:00
parent 8d009ee4a2
commit a6be01a45e
5 changed files with 38 additions and 28 deletions

View file

@ -1,5 +1,7 @@
2001-03-23 Neil Jerram <neil@ossau.uklinux.net>
* guile-snarf.awk.in: Substitute "\\" with "\" in .doc output.
* strop.c (scm_string_index): Fix docstring line break
regression.

View file

@ -104,6 +104,7 @@ BEGIN { FS="|";
gsub(/\\n\\n\"?/,"\n",copy);
gsub(/\\n\"?[ \t]*$/,"",copy);
gsub(/\\\"/,"\"",copy);
gsub(/\\\\/,"\\",copy);
gsub(/[ \t]*$/,"", copy);
if (copy != "") { print copy > dot_doc_file }
}