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:
parent
8d009ee4a2
commit
a6be01a45e
5 changed files with 38 additions and 28 deletions
|
@ -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.
|
||||
|
||||
|
|
|
@ -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 }
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue