1
0
mirror of https://github.com/zsh-users/zsh synced 2024-07-08 19:55:44 +00:00

18938: Export some data symbols.

This commit is contained in:
Peter Stephenson 2003-08-11 10:45:08 +00:00
parent 2f6bd52bcf
commit b38f3c9a17
5 changed files with 12 additions and 5 deletions

View File

@ -1,3 +1,10 @@
2003-08-11 Peter Stephenson <pws@csr.com>
* 18938: Src/lex.c, Src/Math.c, Src/Zle/zle_main.c,
Src/Zle/compcore.c: Mark some data symbols for export, shutting
up Cygwin's dllwrap. Note that c from zle_main.c is not marked
for export because no-one would ever export a symbol called c.
2003-08-05 Oliver Kiddle <opk@zsh.org>
* Completion/Unix/Command/_archie: archie servers no longer exist

View File

@ -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)

View File

@ -107,9 +107,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. */

View File

@ -44,7 +44,7 @@ mod_export char *tokstr;
/**/
mod_export int tok;
/**/
int tokfd;
mod_export int tokfd;
/* lexical analyzer error flag */

View File

@ -40,7 +40,7 @@ int noeval;
/* integer zero */
/**/
mnumber zero_mnumber;
mod_export mnumber zero_mnumber;
/* last input base we used */