unposted: Fix some typos and markup.

This commit is contained in:
Daniel Shahaf 2022-02-22 13:09:33 +00:00
parent 865baf7a25
commit 45182eb4d4
5 changed files with 13 additions and 5 deletions

View file

@ -1,3 +1,8 @@
2022-02-22 Daniel Shahaf <d.s@daniel.shahaf.name>
* unposted: Doc/Zsh/contrib.yo, Src/Modules/parameter.c,
Src/string.c, Src/zsh.h: Fix some typos and markup.
2022-02-22 Peter Stephenson <p.stephenson@samsung.com>
* 49672: Doc/Zsh/expn.yo: document "tied" output in parameter

View file

@ -1159,7 +1159,7 @@ This is used by the Perforce backend (tt(p4)) to decide if it should
contact the Perforce server to find out if a directory is managed
by Perforce. This is the only reliable way of doing this, but runs
the risk of a delay if the server name cannot be found. If the
server (more specifically, the tt(host)tt(:)tt(port) pair describing the
server (more specifically, the var(host)tt(:)var(port) pair describing the
server) cannot be contacted, its name is put into the associative array
tt(vcs_info_p4_dead_servers) and is not contacted again during the session
until it is removed by hand. If you do not set this style, the tt(p4)
@ -1318,7 +1318,7 @@ tt(%Q) expando.
item(tt(%Q))(
Quilt series information.
When quilt is used (either in `addon' mode or as a `standalone' backend),
this expando is set to quilt series' tt(patch-format) string.
this expando is set to the quilt series' tt(patch-format) string.
The tt(set-patch-format) hook and tt(nopatch-format) style are honoured.
See ifzman(tt(Quilt Support))ifnzman(noderef(vcs_info Quilt Support)) below for details.

View file

@ -592,7 +592,7 @@ getpmfunction_source(HashTable ht, const char *name)
return getfunction_source(ht, name, 0);
}
/* Param table entry for retrieving ds_functions_source element */
/* Param table entry for retrieving dis_functions_source element */
/**/
static HashNode

View file

@ -103,7 +103,10 @@ wcs_ztrdup(const wchar_t *s)
#endif /* MULTIBYTE_SUPPORT */
/* concatenate s1, s2, and s3 in dynamically allocated buffer */
/* Concatenate s1, s2, and s3 into dynamically allocated buffer.
*
* To concatenate four or more strings, see zjoin().
*/
/**/
mod_export char *

View file

@ -1448,7 +1448,7 @@ struct builtin {
int minargs; /* minimum number of arguments */
int maxargs; /* maximum number of arguments, or -1 for no limit */
int funcid; /* xbins (see above) for overloaded handlerfuncs */
char *optstr; /* string of legal options */
char *optstr; /* string of legal options (see execbuiltin()) */
char *defopts; /* options set by default for overloaded handlerfuncs */
};