1
0
mirror of git://git.gnupg.org/gnupg.git synced 2025-06-17 20:27:03 +02:00

Update manuals from master

* doc/Makefile.am (update-source): Copy from Git master.
(update-source-from-gnupg-2): Remove.
* doc/gpg.texi: Fix minor typos and grammar bugs.
* doc/yat2m.c: Change diagnostics to updated coding standards.
This commit is contained in:
Werner Koch 2012-12-20 20:12:50 +01:00
parent cb5f640420
commit 65d6da865c
3 changed files with 24 additions and 25 deletions

View File

@ -92,13 +92,12 @@ dist-hook:
@if test "`wc -c < gpg.1`" -lt 200; then \ @if test "`wc -c < gpg.1`" -lt 200; then \
echo 'ERROR: dummy man page'; false; fi echo 'ERROR: dummy man page'; false; fi
# Helper to update some source files. # Copy shared files from the master branch. We keep the texinfo files
update-source-from-gnupg-2: # all in master so that we need to modify only one source. Macros are
@set -e; \ # used to customize them for a specific version.
if test -d ../../gnupg/scd; then dir="../../gnupg"; \ update-source:
else exit 1; \ @set -e; cd $(srcdir); \
fi; \ for i in $(sources_from_trunk) yat2m.c ; do \
for i in $(sources_from_trunk); do \ echo "updating from master:doc/$$i" >&2 ; \
cp $$dir/doc/$$i $$i; echo $$i; \ git show master:doc/$$i >$$i ; \
done ;\ done
echo "Please remember to update the ChangeLog!"

View File

@ -388,7 +388,7 @@ safeguard against accidental deletion of multiple keys.
@item --delete-secret-key @code{name} @item --delete-secret-key @code{name}
@opindex delete-secret-key @opindex delete-secret-key
Remove key from the secret and public keyring. In batch mode the key Remove key from the secret keyring. In batch mode the key
must be specified by fingerprint. must be specified by fingerprint.
@item --delete-secret-and-public-key @code{name} @item --delete-secret-and-public-key @code{name}
@ -1363,7 +1363,7 @@ useful for a "persona" verification, where you sign the key of a
pseudonymous user. pseudonymous user.
2 means you did casual verification of the key. For example, this 2 means you did casual verification of the key. For example, this
could mean that you verified that the key fingerprint and checked the could mean that you verified the key fingerprint and checked the
user ID on the key against a photo ID. user ID on the key against a photo ID.
3 means you did extensive verification of the key. For example, this 3 means you did extensive verification of the key. For example, this

View File

@ -414,7 +414,7 @@ static void
start_page (char *name) start_page (char *name)
{ {
if (verbose) if (verbose)
inf ("starting page `%s'", name); inf ("starting page '%s'", name);
assert (!thepage.name); assert (!thepage.name);
thepage.name = xstrdup (name); thepage.name = xstrdup (name);
thepage.n_sections = 0; thepage.n_sections = 0;
@ -434,7 +434,7 @@ write_th (FILE *fp)
p = strrchr (name, '.'); p = strrchr (name, '.');
if (!p || !p[1]) if (!p || !p[1])
{ {
err ("no section name in man page `%s'", thepage.name); err ("no section name in man page '%s'", thepage.name);
free (name); free (name);
return -1; return -1;
} }
@ -591,7 +591,7 @@ proc_texi_cmd (FILE *fp, const char *command, const char *rest, size_t len,
ignore_args = 1; /* Parameterized macros are not yet supported. */ ignore_args = 1; /* Parameterized macros are not yet supported. */
} }
else else
inf ("texinfo command `%s' not supported (%.*s)", command, inf ("texinfo command '%s' not supported (%.*s)", command,
((s = memchr (rest, '\n', len)), (s? (s-rest) : len)), rest); ((s = memchr (rest, '\n', len)), (s? (s-rest) : len)), rest);
} }
@ -605,7 +605,7 @@ proc_texi_cmd (FILE *fp, const char *command, const char *rest, size_t len,
i--; i--;
if (i) if (i)
{ {
err ("closing brace for command `%s' not found", command); err ("closing brace for command '%s' not found", command);
return len; return len;
} }
if (n > 2 && !ignore_args) if (n > 2 && !ignore_args)
@ -780,13 +780,13 @@ finish_page (void)
return; /* No page active. */ return; /* No page active. */
if (verbose) if (verbose)
inf ("finishing page `%s'", thepage.name); inf ("finishing page '%s'", thepage.name);
if (opt_select) if (opt_select)
{ {
if (!strcmp (opt_select, thepage.name)) if (!strcmp (opt_select, thepage.name))
{ {
inf ("selected `%s'", thepage.name ); inf ("selected '%s'", thepage.name );
fp = stdout; fp = stdout;
} }
else else
@ -798,10 +798,10 @@ finish_page (void)
} }
else if (opt_store) else if (opt_store)
{ {
inf ("writing `%s'", thepage.name ); inf ("writing '%s'", thepage.name );
fp = fopen ( thepage.name, "w" ); fp = fopen ( thepage.name, "w" );
if (!fp) if (!fp)
die ("failed to create `%s': %s\n", thepage.name, strerror (errno)); die ("failed to create '%s': %s\n", thepage.name, strerror (errno));
} }
else else
fp = stdout; fp = stdout;
@ -1162,7 +1162,7 @@ parse_file (const char *fname, FILE *fp, char **section_name, int in_pause)
} }
if (!incfp) if (!incfp)
err ("can't open include file `%s':%s", err ("can't open include file '%s':%s",
incname, strerror (errno)); incname, strerror (errno));
else else
{ {