mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-17 01:00:20 +02:00
Exchange of manual enhancements between stable and unstable branches.
This commit is contained in:
parent
890f4dd7e3
commit
6dd447a368
12 changed files with 479 additions and 2901 deletions
|
@ -1,3 +1,8 @@
|
|||
2002-03-24 Neil Jerram <neil@ossau.uklinux.net>
|
||||
|
||||
* snarf-guile-m4-docs (display-texi): Strip off `# ' from start of
|
||||
docstring lines if possible, rather than just `#'.
|
||||
|
||||
2002-03-14 Neil Jerram <neil@ossau.uklinux.net>
|
||||
|
||||
These changes add a @deffnx C function declaration and function
|
||||
|
|
|
@ -43,9 +43,12 @@ exec ${GUILE-guile} -l $0 -c "(apply $main (cdr (command-line)))" "$@"
|
|||
(define (display-texi lines)
|
||||
(display "@deffn {Autoconf Macro}")
|
||||
(for-each (lambda (line)
|
||||
(display (if (string=? "#" (substring line 0 1))
|
||||
(substring line 1)
|
||||
line))
|
||||
(display (cond ((and (>= (string-length line) 2)
|
||||
(string=? "# " (substring line 0 2)))
|
||||
(substring line 2))
|
||||
((string=? "#" (substring line 0 1))
|
||||
(substring line 1))
|
||||
(else line)))
|
||||
(newline))
|
||||
lines)
|
||||
(display "@end deffn")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue