[svn] GnuPG - r4737 - trunk/doc

svn author wk cvs at cvs.gnupg.org
Thu Apr 3 11:58:29 CEST 2008


Author: wk
Date: 2008-04-03 11:58:28 +0200 (Thu, 03 Apr 2008)
New Revision: 4737

Modified:
   trunk/doc/ChangeLog
   trunk/doc/TRANSLATE
   trunk/doc/opt-homedir.texi
   trunk/doc/yat2m.c
Log:
Fixed last yat2m change.
Add a similar change to @file and @env.


Modified: trunk/doc/ChangeLog
===================================================================
--- trunk/doc/ChangeLog	2008-04-02 18:03:04 UTC (rev 4736)
+++ trunk/doc/ChangeLog	2008-04-03 09:58:28 UTC (rev 4737)
@@ -1,3 +1,16 @@
+2008-04-03  Werner Koch  <wk at g10code.com>
+
+	* yat2m.c (proc_texi_cmd): Remove extra apostrophe from @samp and
+	use open and close quote to @file and @env.
+
+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.
+
 2008-03-27  Werner Koch  <wk at g10code.com>
 
 	* Makefile.am (nobase_dist_doc_DATA, dist_html_DATA): New.  Move

Modified: trunk/doc/TRANSLATE
===================================================================
--- trunk/doc/TRANSLATE	2008-04-02 18:03:04 UTC (rev 4736)
+++ trunk/doc/TRANSLATE	2008-04-03 09:58:28 UTC (rev 4737)
@@ -43,7 +43,7 @@
    .gpgsm.some.help-item
    This string has been translated.
 
-The percent sign is not a special character and if tehre is something
+The percent sign is not a special character and if there is something
 to watch out there will be a remark.
 
 

Modified: trunk/doc/opt-homedir.texi
===================================================================
--- trunk/doc/opt-homedir.texi	2008-04-02 18:03:04 UTC (rev 4736)
+++ trunk/doc/opt-homedir.texi	2008-04-03 09:58:28 UTC (rev 4737)
@@ -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: trunk/doc/yat2m.c
===================================================================
--- trunk/doc/yat2m.c	2008-04-02 18:03:04 UTC (rev 4736)
+++ trunk/doc/yat2m.c	2008-04-03 09:58:28 UTC (rev 4737)
@@ -449,9 +449,9 @@
     { "code",    0, "\\fB", "\\fR" },
     { "sc",      0, "\\fB", "\\fR" },
     { "var",     0, "\\fI", "\\fR" },
-    { "samp",    0, "'",  "'"  },
-    { "file",    0, "`\\fI","\\fR'" }, 
-    { "env",     0, "`\\fI","\\fR'" }, 
+    { "samp",    0, "\\(aq", "\\(aq"  },
+    { "file",    0, "\\(oq\\fI","\\fR\\(cq" }, 
+    { "env",     0, "\\(oq\\fI","\\fR\\(cq" }, 
     { "acronym", 0 },
     { "dfn",     0 },
     { "option",  0, "\\fB", "\\fR"   },
@@ -675,6 +675,8 @@
             }
           *eol_action = 0;
         }
+      else if (*s == '\\')
+        fputs ("\\\\", fp);
       else
         putc (*s, fp);
     }




More information about the Gnupg-commits mailing list