diff options
Diffstat (limited to '')
-rw-r--r-- | src/expand.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/expand.c b/src/expand.c index 1b77b7c..6bee5c5 100644 --- a/src/expand.c +++ b/src/expand.c @@ -364,7 +364,6 @@ exptilde(char *startp, char *p, int flag) char *name; const char *home; int quotes = flag & QUOTES_ESC; - int startloc; name = p + 1; @@ -393,9 +392,7 @@ done: if (!home || !*home) goto lose; *p = c; - startloc = expdest - (char *)stackblock(); strtodest(home, SQSYNTAX, quotes); - recordregion(startloc, expdest - (char *)stackblock(), 0); return (p); lose: *p = c; |