mirror of
git://git.code.sf.net/p/zsh/code
synced 2024-12-28 16:15:02 +01:00
19315: missing mod_export definitions
This commit is contained in:
parent
4ad8d51ab9
commit
7c05a5d22e
6 changed files with 10 additions and 7 deletions
|
@ -1,5 +1,8 @@
|
|||
2003-12-18 Peter Stephenson <pws@csr.com>
|
||||
|
||||
* 19315: Src/lex.c, Src/math.c, Src/params.c, Src/Zle/compcore.c,
|
||||
Src/Zle/zle_main.c: missing mod_export definitions.
|
||||
|
||||
* unposted: Config/version.mk, Completion/Unix/Command/.distfiles:
|
||||
zsh-4.0.8.
|
||||
|
||||
|
|
|
@ -277,7 +277,7 @@ int fromcomp;
|
|||
/* This holds the end-position of the last string inserted into the line. */
|
||||
|
||||
/**/
|
||||
int lastend;
|
||||
mod_export int lastend;
|
||||
|
||||
#define inststr(X) inststrlen((X),1,-1)
|
||||
|
||||
|
|
|
@ -64,7 +64,7 @@ int mark;
|
|||
/* last character pressed */
|
||||
|
||||
/**/
|
||||
int c;
|
||||
mod_export int c; /* YUK! */
|
||||
|
||||
/* the bindings for the previous and for this key */
|
||||
|
||||
|
@ -99,9 +99,9 @@ mod_export Widget compwidget;
|
|||
/* the status line, and its length */
|
||||
|
||||
/**/
|
||||
char *statusline;
|
||||
mod_export char *statusline;
|
||||
/**/
|
||||
int statusll;
|
||||
mod_export int statusll;
|
||||
|
||||
/* The current history line and cursor position for the top line *
|
||||
* on the buffer stack. */
|
||||
|
|
|
@ -44,7 +44,7 @@ mod_export char *tokstr;
|
|||
/**/
|
||||
mod_export int tok;
|
||||
/**/
|
||||
int tokfd;
|
||||
mod_export int tokfd;
|
||||
|
||||
/* lexical analyzer error flag */
|
||||
|
||||
|
|
|
@ -40,7 +40,7 @@ int noeval;
|
|||
/* integer zero */
|
||||
|
||||
/**/
|
||||
mnumber zero_mnumber;
|
||||
mod_export mnumber zero_mnumber;
|
||||
|
||||
/* last input base we used */
|
||||
|
||||
|
|
|
@ -763,7 +763,7 @@ copyparam(Param tpm, Param pm, int toplevel)
|
|||
/* Return 1 if the string s is a valid identifier, else return 0. */
|
||||
|
||||
/**/
|
||||
int
|
||||
mod_export int
|
||||
isident(char *s)
|
||||
{
|
||||
char *ss;
|
||||
|
|
Loading…
Reference in a new issue