diff options
author | Werner Koch <[email protected]> | 2008-09-03 09:37:32 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2008-09-03 09:37:32 +0000 |
commit | 5a8bf0bec6e63ebd57d0064be65c08ac331ac9e3 (patch) | |
tree | 187e260d1af072d35a529fd43b765e71bab34108 /doc/yat2m.c | |
parent | 2008-08-30 Moritz <[email protected]> (diff) | |
download | gnupg-5a8bf0bec6e63ebd57d0064be65c08ac331ac9e3.tar.gz gnupg-5a8bf0bec6e63ebd57d0064be65c08ac331ac9e3.zip |
Fix gpg-preset-passphrase bug.
Cleanups
Diffstat (limited to 'doc/yat2m.c')
-rw-r--r-- | doc/yat2m.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/doc/yat2m.c b/doc/yat2m.c index 34e489a01..a936fefa9 100644 --- a/doc/yat2m.c +++ b/doc/yat2m.c @@ -1,6 +1,6 @@ /* yat2m.c - Yet Another Texi 2 Man converter * Copyright (C) 2005 g10 Code GmbH - * Copyright (C) 2006 2006 Free Software Foundation, Inc. + * Copyright (C) 2006, 2008 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -87,7 +87,7 @@ #define PGM "yat2m" -#define VERSION "0.5" +#define VERSION "1.0" /* The maximum length of a line including the linefeed and one extra character. */ @@ -414,6 +414,8 @@ write_th (FILE *fp) { char *name, *p; + fputs (".\\\" Created from Texinfo source by yat2m " VERSION "\n", fp); + name = ascii_strupr (xstrdup (thepage.name)); p = strrchr (name, '.'); if (!p || !p[1]) |