diff options
author | NIIBE Yutaka <[email protected]> | 2023-11-16 02:41:08 +0000 |
---|---|---|
committer | NIIBE Yutaka <[email protected]> | 2023-11-16 02:41:08 +0000 |
commit | f83eac17363a8c76c10b06712ba3dd39146f36b4 (patch) | |
tree | 830ae23dd3fabbfb3c874c1438631b898c024a39 /doc | |
parent | yat2m: Implement @item handling with @table item specification. (diff) | |
download | libgpg-error-f83eac17363a8c76c10b06712ba3dd39146f36b4.tar.gz libgpg-error-f83eac17363a8c76c10b06712ba3dd39146f36b4.zip |
yat2m: Fix HTML output for backslash.
* doc/yat2m.c (proc_texi_buffer): Use &bsol.
--
Signed-off-by: NIIBE Yutaka <[email protected]>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/yat2m.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/yat2m.c b/doc/yat2m.c index a6ab8a0..4c0eec9 100644 --- a/doc/yat2m.c +++ b/doc/yat2m.c @@ -1717,7 +1717,7 @@ proc_texi_buffer (FILE *fp, const char *line, size_t len, cond_parse_dash = 0; } else if (*s == '\\') - writestr ("\\[rs]", "\\\\", fp); + writestr ("\\[rs]", "\", fp); else if (cond_parse_dash == 1 && sect && *s == '-') /* Handle -- and --- when it's _not_ in an argument. */ { |