diff options
author | NIIBE Yutaka <[email protected]> | 2023-11-07 04:19:36 +0000 |
---|---|---|
committer | NIIBE Yutaka <[email protected]> | 2023-11-07 04:34:27 +0000 |
commit | 6fe51354634361970761095f71e278b90b0dd4e7 (patch) | |
tree | c150d762669977d070ee04641f948154e4b62e7d | |
parent | yat2m: Parse @dots{} to show ellipsis in HTML mode. (diff) | |
download | libgpg-error-6fe51354634361970761095f71e278b90b0dd4e7.tar.gz libgpg-error-6fe51354634361970761095f71e278b90b0dd4e7.zip |
yat2m: Fix backslash output in man.
* doc/yat2m.c (proc_texi_buffer): Use \[rs] for backslash.
--
Signed-off-by: NIIBE Yutaka <[email protected]>
-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 9530319..25e9c5c 100644 --- a/doc/yat2m.c +++ b/doc/yat2m.c @@ -1641,7 +1641,7 @@ proc_texi_buffer (FILE *fp, const char *line, size_t len, cond_parse_dash = 0; } else if (*s == '\\') - writestr ("\\\\", "\\\\", fp); + writestr ("\\[rs]", "\\\\", fp); else if (cond_parse_dash == 1 && sect && *s == '-') /* Handle -- and --- when it's _not_ in an argument. */ { |