summary refs log tree commit diff
path: root/ChangeLog
diff options
context:
space:
mode:
authorHerbert Xu <herbert@gondor.apana.org.au>2007-11-11 15:00:06 +0800
committerHerbert Xu <herbert@gondor.apana.org.au>2007-11-11 15:00:06 +0800
commit44a94779a85f2a87cd0d552c1d272b8c05b85630 (patch)
tree77bd58bff5b3cdb3d8ad44455befb6f536750bd1 /ChangeLog
parent[PARSER] Removed noexpand/length check on eofmark (diff)
downloaddash-44a94779a85f2a87cd0d552c1d272b8c05b85630.tar.gz
dash-44a94779a85f2a87cd0d552c1d272b8c05b85630.zip
[EXPAND] Removed herefd hack
The herefd hack goes back more than a decade.  it limits the amount of
memory we have to allocate when expanding here-documents by writing the
result out from time to time.  However, it's no longer safe because the
stack is used to place intermediate results too and there we certainly
don't want to write them out should we be short on memory.

In any case, with today's computers we can afford to keep the entire
result in memory and write them out at the end.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog1
1 files changed, 1 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index ad98810..39940b9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,7 @@
 2007-11-11  Herbert Xu <herbert@gondor.apana.org.au>
 
 	* Removed noexpand/length check on eofmark.
+	* Removed herefd hack.
 
 2007-10-20  Herbert Xu <herbert@gondor.apana.org.au>