mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-17 02:51:01 +02:00
AIX dependency fixes
This commit is contained in:
parent
4ae42bb70e
commit
708dc69d38
4 changed files with 11 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2000-07-04 Oliver Kiddle <opk@zsh.org>
|
||||||
|
|
||||||
|
* unposted: Src/params.c, Src/Zle/compcore.c, Src/Zle/zle_utils.c:
|
||||||
|
AIX dependency fixes
|
||||||
|
|
||||||
2000-07-04 Peter Stephenson <pws@cambridgesiliconradio.com>
|
2000-07-04 Peter Stephenson <pws@cambridgesiliconradio.com>
|
||||||
|
|
||||||
* 12158: Src/Modules/parameter.c: cast pid_t to int for printing.
|
* 12158: Src/Modules/parameter.c: cast pid_t to int for printing.
|
||||||
|
|
|
@ -37,7 +37,10 @@ static Widget lastcompwidget;
|
||||||
/* Flags saying what we have to do with the result. */
|
/* Flags saying what we have to do with the result. */
|
||||||
|
|
||||||
/**/
|
/**/
|
||||||
int useexact, useline, uselist, forcelist, iforcemenu, startauto;
|
int useexact, useline, uselist, forcelist, startauto;
|
||||||
|
|
||||||
|
/**/
|
||||||
|
mod_export int iforcemenu;
|
||||||
|
|
||||||
/* Non-zero if we should go back to the last prompt. */
|
/* Non-zero if we should go back to the last prompt. */
|
||||||
|
|
||||||
|
|
|
@ -472,7 +472,7 @@ freechanges(struct change *p)
|
||||||
/* register pending changes in the undo system */
|
/* register pending changes in the undo system */
|
||||||
|
|
||||||
/**/
|
/**/
|
||||||
void
|
mod_export void
|
||||||
handleundo(void)
|
handleundo(void)
|
||||||
{
|
{
|
||||||
mkundoent();
|
mkundoent();
|
||||||
|
|
|
@ -1400,7 +1400,7 @@ getstrvalue(Value v)
|
||||||
static char *nular[] = {"", NULL};
|
static char *nular[] = {"", NULL};
|
||||||
|
|
||||||
/**/
|
/**/
|
||||||
char **
|
mod_export char **
|
||||||
getarrvalue(Value v)
|
getarrvalue(Value v)
|
||||||
{
|
{
|
||||||
char **s;
|
char **s;
|
||||||
|
|
Loading…
Reference in a new issue