diff options
author | NIIBE Yutaka <[email protected]> | 2023-11-07 05:25:35 +0000 |
---|---|---|
committer | NIIBE Yutaka <[email protected]> | 2023-11-07 05:25:35 +0000 |
commit | 8275d716bae68124c4c6bebde5305aed1dad5cd4 (patch) | |
tree | 0ccd4c7ba61de9b167a67efec4a4f5a0ecd82f26 | |
parent | yat2m: Use \fP to return previous font. (diff) | |
download | libgpg-error-8275d716bae68124c4c6bebde5305aed1dad5cd4.tar.gz libgpg-error-8275d716bae68124c4c6bebde5305aed1dad5cd4.zip |
yat2m: Add support of @minus{} command.
* doc/yat2m.c (proc_texi_cmd): Support @minus.
--
GnuPG-bug-id: 6674
Signed-off-by: NIIBE Yutaka <[email protected]>
-rw-r--r-- | doc/yat2m.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/yat2m.c b/doc/yat2m.c index be93da3..d4ae8e2 100644 --- a/doc/yat2m.c +++ b/doc/yat2m.c @@ -1319,6 +1319,7 @@ proc_texi_cmd (FILE *fp, const char *command, const char *rest, size_t len, { "quotation",1, ".RS\n\\fB" }, { "value", 8 }, { "dots", 0, "...", NULL, "…" }, + { "minus", 0, "\\-", NULL, "−" }, { NULL } }; size_t n; |