diff options
author | Werner Koch <[email protected]> | 2008-04-02 08:20:38 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2008-04-02 08:20:38 +0000 |
commit | 6760519194fc2a8e3749665718a6a3f49c6c20a8 (patch) | |
tree | 05eda3acc74a785b5d5f28012960eddd7d268b64 | |
parent | * configure.ac: Require curl 7.10 (Oct 1 2002) or later as we use (diff) | |
download | gnupg-6760519194fc2a8e3749665718a6a3f49c6c20a8.tar.gz gnupg-6760519194fc2a8e3749665718a6a3f49c6c20a8.zip |
Fix rendering of @samp.
-rw-r--r-- | doc/ChangeLog | 5 | ||||
-rw-r--r-- | doc/yat2m.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/doc/ChangeLog b/doc/ChangeLog index 80dd2bc8e..ee16ddccd 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,3 +1,8 @@ +2008-04-02 Werner Koch <[email protected]> + + * yat2m.c (proc_texi_cmd): Use the \(aq glyph for @samp. This is + bug#898. + 2007-12-21 Werner Koch <[email protected]> * README.W32: Tell that Vista is supported and that at least NT-4 diff --git a/doc/yat2m.c b/doc/yat2m.c index 9411e3419..e09f2e9a3 100644 --- a/doc/yat2m.c +++ b/doc/yat2m.c @@ -449,7 +449,7 @@ proc_texi_cmd (FILE *fp, const char *command, const char *rest, size_t len, { "code", 0, "\\fB", "\\fR" }, { "sc", 0, "\\fB", "\\fR" }, { "var", 0, "\\fI", "\\fR" }, - { "samp", 0, "'", "'" }, + { "samp", 0, "\\(aq", "\\(aq'" }, { "file", 0, "`\\fI","\\fR'" }, { "env", 0, "`\\fI","\\fR'" }, { "acronym", 0 }, |