diff options
Diffstat (limited to 'Src/init.c')
-rw-r--r-- | Src/init.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Src/init.c b/Src/init.c index 2761a6afc..f0b9803e4 100644 --- a/Src/init.c +++ b/Src/init.c @@ -43,7 +43,7 @@ int noexitct = 0; char *underscore; /**/ -int underscorelen; +int underscorelen, underscoreused; /* what level of sourcing we are at */ @@ -625,6 +625,7 @@ setupvals(void) wordchars = ztrdup(DEFAULT_WORDCHARS); postedit = ztrdup(""); underscore = (char *) zalloc(underscorelen = 32); + underscoreused = 1; *underscore = '\0'; zoptarg = ztrdup(""); |