diff options
author | Ludovic Courtès <ludo@gnu.org> | 2013-03-21 16:37:48 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2013-03-21 18:52:29 +0100 |
commit | 797b2aa69aeb7db607250bad83d31a31f8f4d1c7 (patch) | |
tree | 0cfaf5cc568a491cc68822e618523468dcd8d96b /module/texinfo.scm | |
parent | c52ce75a1f87e72d675fc5a6ad95ef26dd517e10 (diff) | |
download | guile-797b2aa69aeb7db607250bad83d31a31f8f4d1c7.tar.gz |
texinfo: Allow markup in the arguments of `@pxref'.
* module/texinfo.scm (texi-command-specs)[pxref]: Change to
`INLINE-TEXT-ARGS'.
* test-suite/tests/texinfo.test ("test-texinfo->stexinfo")["@pxref{Locales,
@code{setlocale}}"]: New test.
Diffstat (limited to 'module/texinfo.scm')
-rw-r--r-- | module/texinfo.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/module/texinfo.scm b/module/texinfo.scm index edee5b397..cb7a775d4 100644 --- a/module/texinfo.scm +++ b/module/texinfo.scm @@ -216,7 +216,8 @@ lambda. Only present for @code{INLINE-ARGS}, @code{EOL-ARGS}, (value INLINE-ARGS . (key)) (ref INLINE-ARGS . (node #:opt name section info-file manual)) (xref INLINE-ARGS . (node #:opt name section info-file manual)) - (pxref INLINE-ARGS . (node #:opt name section info-file manual)) + (pxref INLINE-TEXT-ARGS + . (node #:opt name section info-file manual)) (url ALIAS . uref) (uref INLINE-ARGS . (url #:opt title replacement)) (anchor INLINE-ARGS . (name)) |