about summary refs log tree commit diff
path: root/Src
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2010-02-09 13:58:11 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2010-02-09 13:58:11 +0000
commit9fe0077305b9f92a10f6a2f29d7fa1331a551509 (patch)
tree68fd3470abba0ef650134aa62a447954c2a13265 /Src
parent4a0ddedf0af0bbd22530132df830b588b2b63220 (diff)
downloadzsh-9fe0077305b9f92a10f6a2f29d7fa1331a551509.tar.gz
zsh-9fe0077305b9f92a10f6a2f29d7fa1331a551509.tar.xz
zsh-9fe0077305b9f92a10f6a2f29d7fa1331a551509.zip
Geoff: 27693: rename underscore to avoid name clash
Diffstat (limited to 'Src')
-rw-r--r--Src/exec.c16
-rw-r--r--Src/init.c6
-rw-r--r--Src/params.c2
3 files changed, 12 insertions, 12 deletions
diff --git a/Src/exec.c b/Src/exec.c
index 06ff8e30f..02887e1aa 100644
--- a/Src/exec.c
+++ b/Src/exec.c
@@ -2191,17 +2191,17 @@ setunderscore(char *str)
 	int l = strlen(str) + 1, nl = (l + 31) & ~31;
 
 	if (nl > underscorelen || (underscorelen - nl) > 64) {
-	    zfree(underscore, underscorelen);
-	    underscore = (char *) zalloc(underscorelen = nl);
+	    zfree(zunderscore, underscorelen);
+	    zunderscore = (char *) zalloc(underscorelen = nl);
 	}
-	strcpy(underscore, str);
+	strcpy(zunderscore, str);
 	underscoreused = l;
     } else {
 	if (underscorelen > 128) {
-	    zfree(underscore, underscorelen);
-	    underscore = (char *) zalloc(underscorelen = 32);
+	    zfree(zunderscore, underscorelen);
+	    zunderscore = (char *) zalloc(underscorelen = 32);
 	}
-	*underscore = '\0';
+	*zunderscore = '\0';
 	underscoreused = 1;
     }
 }
@@ -4506,7 +4506,7 @@ runshfunc(Eprog prog, FuncWrap wrap, char *name)
 
     ou = zalloc(ouu = underscoreused);
     if (ou)
-	memcpy(ou, underscore, underscoreused);
+	memcpy(ou, zunderscore, underscoreused);
 
     while (wrap) {
 	wrap->module->wrapper++;
@@ -4750,7 +4750,7 @@ execsave(void)
     es->traplocallevel = traplocallevel;
     es->noerrs = noerrs;
     es->subsh_close = subsh_close;
-    es->underscore = ztrdup(underscore);
+    es->underscore = ztrdup(zunderscore);
     es->next = exstack;
     exstack = es;
     noerrs = cmdoutpid = 0;
diff --git a/Src/init.c b/Src/init.c
index 02129ddbb..aa0dffd6f 100644
--- a/Src/init.c
+++ b/Src/init.c
@@ -42,7 +42,7 @@ int noexitct = 0;
 /* buffer for $_ and its length */
 
 /**/
-char *underscore;
+char *zunderscore;
 
 /**/
 int underscorelen, underscoreused;
@@ -818,9 +818,9 @@ setupvals(void)
     ifs         = ztrdup(DEFAULT_IFS);
     wordchars   = ztrdup(DEFAULT_WORDCHARS);
     postedit    = ztrdup("");
-    underscore  = (char *) zalloc(underscorelen = 32);
+    zunderscore  = (char *) zalloc(underscorelen = 32);
     underscoreused = 1;
-    *underscore = '\0';
+    *zunderscore = '\0';
 
     zoptarg = ztrdup("");
     zoptind = 1;
diff --git a/Src/params.c b/Src/params.c
index abc4c0002..b19881ee7 100644
--- a/Src/params.c
+++ b/Src/params.c
@@ -3974,7 +3974,7 @@ wordcharssetfn(UNUSED(Param pm), char *x)
 char *
 underscoregetfn(UNUSED(Param pm))
 {
-    char *u = dupstring(underscore);
+    char *u = dupstring(zunderscore);
 
     untokenize(u);
     return u;