about summary refs log tree commit diff
path: root/Src/exec.c
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/exec.c
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/exec.c')
-rw-r--r--Src/exec.c16
1 files changed, 8 insertions, 8 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;