[svn] GnuPG - r4735 - branches/STABLE-BRANCH-1-4/doc
svn author wk
cvs at cvs.gnupg.org
Wed Apr 2 10:48:09 CEST 2008
Author: wk
Date: 2008-04-02 10:48:08 +0200 (Wed, 02 Apr 2008)
New Revision: 4735
Modified:
branches/STABLE-BRANCH-1-4/doc/ChangeLog
branches/STABLE-BRANCH-1-4/doc/opt-homedir.texi
branches/STABLE-BRANCH-1-4/doc/yat2m.c
Log:
Yet another minor yat2m fix.
Modified: branches/STABLE-BRANCH-1-4/doc/ChangeLog
===================================================================
--- branches/STABLE-BRANCH-1-4/doc/ChangeLog 2008-04-02 08:20:38 UTC (rev 4734)
+++ branches/STABLE-BRANCH-1-4/doc/ChangeLog 2008-04-02 08:48:08 UTC (rev 4735)
@@ -1,7 +1,10 @@
2008-04-02 Werner Koch <wk at g10code.com>
+ * opt-homedir.texi: Remove special case for Registry key.
+
* yat2m.c (proc_texi_cmd): Use the \(aq glyph for @samp. This is
bug#898.
+ (proc_texi_buffer): Handle backslashs correctly.
2007-12-21 Werner Koch <wk at g10code.com>
Modified: branches/STABLE-BRANCH-1-4/doc/opt-homedir.texi
===================================================================
--- branches/STABLE-BRANCH-1-4/doc/opt-homedir.texi 2008-04-02 08:20:38 UTC (rev 4734)
+++ branches/STABLE-BRANCH-1-4/doc/opt-homedir.texi 2008-04-02 08:48:08 UTC (rev 4735)
@@ -6,9 +6,5 @@
recognized when given on the command line. It also overrides any home
directory stated through the environment variable @env{GNUPGHOME} or
(on W32 systems) by means on the Registry entry
- at ifset isman
- at var{HKCU\\Software\\GNU\\GnuPG:HomeDir}.
- at end ifset
- at ifclear isman
@var{HKCU\Software\GNU\GnuPG:HomeDir}.
- at end ifclear
+
Modified: branches/STABLE-BRANCH-1-4/doc/yat2m.c
===================================================================
--- branches/STABLE-BRANCH-1-4/doc/yat2m.c 2008-04-02 08:20:38 UTC (rev 4734)
+++ branches/STABLE-BRANCH-1-4/doc/yat2m.c 2008-04-02 08:48:08 UTC (rev 4735)
@@ -42,7 +42,7 @@
the next input line if that line begins with @section, @subsection or
@chapheading.
- To insert verbatim troff markup, the follwing texinfo code may be
+ To insert verbatim troff markup, the following texinfo code may be
used:
@ifset manverb
@@ -675,6 +675,8 @@
}
*eol_action = 0;
}
+ else if (*s == '\\')
+ fputs ("\\\\", fp);
else
putc (*s, fp);
}
@@ -842,7 +844,7 @@
{
char *line;
int lnr = 0;
- /* Fixme: The follwing state variables don't carry over to include
+ /* Fixme: The following state variables don't carry over to include
files. */
int in_verbatim = 0;
int skip_to_end = 0; /* Used to skip over menu entries. */
More information about the Gnupg-commits
mailing list