diff options
author | Andy Wingo <wingo@pobox.com> | 2014-11-09 15:56:33 +0000 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2014-11-09 15:56:33 +0000 |
commit | 3f826e3c9ed41ae822463b6ab42b93360e0e7b84 (patch) | |
tree | a265bf89c56865e683a4d89c1b3f9d83e647fcdc /module/texinfo.scm | |
parent | 18c44b29e4438976dac86a3cb53a273dde42e294 (diff) | |
download | guile-3f826e3c9ed41ae822463b6ab42b93360e0e7b84.tar.gz |
texinfo: fix @url{@@} parsing
* module/texinfo.scm (texi-command-specs): The body of @url{} can have
texinfo commands.
* test-suite/tests/texinfo.test ("test-texinfo->stexinfo"): Add tests.
Diffstat (limited to 'module/texinfo.scm')
-rw-r--r-- | module/texinfo.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/texinfo.scm b/module/texinfo.scm index 02fec16a1..f3af5c332 100644 --- a/module/texinfo.scm +++ b/module/texinfo.scm @@ -219,7 +219,7 @@ lambda. Only present for @code{INLINE-ARGS}, @code{EOL-ARGS}, (pxref INLINE-TEXT-ARGS . (node #:opt name section info-file manual)) (url ALIAS . uref) - (uref INLINE-ARGS . (url #:opt title replacement)) + (uref INLINE-TEXT-ARGS . (url #:opt title replacement)) (anchor INLINE-ARGS . (name)) (dots INLINE-ARGS . ()) (result INLINE-ARGS . ()) |