aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--doc/ChangeLog3
-rw-r--r--doc/opt-homedir.texi6
-rw-r--r--doc/yat2m.c6
3 files changed, 8 insertions, 7 deletions
diff --git a/doc/ChangeLog b/doc/ChangeLog
index ee16ddccd..6c6c3b7cb 100644
--- a/doc/ChangeLog
+++ b/doc/ChangeLog
@@ -1,7 +1,10 @@
2008-04-02 Werner Koch <[email protected]>
+ * 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 <[email protected]>
diff --git a/doc/opt-homedir.texi b/doc/opt-homedir.texi
index 387bd02ba..739c442da 100644
--- a/doc/opt-homedir.texi
+++ b/doc/opt-homedir.texi
@@ -6,9 +6,5 @@ used, the home directory defaults to @file{~/.gnupg}. It is only
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
-@ifset isman
-@var{HKCU\\Software\\GNU\\GnuPG:HomeDir}.
-@end ifset
-@ifclear isman
@var{HKCU\Software\GNU\GnuPG:HomeDir}.
-@end ifclear
+
diff --git a/doc/yat2m.c b/doc/yat2m.c
index e09f2e9a3..5ebd79fce 100644
--- a/doc/yat2m.c
+++ b/doc/yat2m.c
@@ -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 @@ proc_texi_buffer (FILE *fp, const char *line, size_t len,
}
*eol_action = 0;
}
+ else if (*s == '\\')
+ fputs ("\\\\", fp);
else
putc (*s, fp);
}
@@ -842,7 +844,7 @@ parse_file (const char *fname, FILE *fp, char **section_name, int in_pause)
{
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. */