WishList revision 59243
159243Sobrien* Fix memory leak related to aliasrun(). Precmd, Cwdcmd etc. leak memory.
259243Sobrien
359243Sobrien* Fix migrate -site $$... Seems to hang... (aix370)
459243Sobrien
559243Sobrien* Fix history in loops.
659243Sobrien
759243Sobrien* New idea.
859243Sobrien	Lots of people seem to like the idea to be able to do sed type
959243Sobrien	operations on shell variables. Maybe we can extend the syntax
1059243Sobrien	of the variable editing to understand string operations.
1159243Sobrien	So I would like to be able to use:
1259243Sobrien	> set a="this is a STRING"
1359243Sobrien	> echo $a:[3-]
1459243Sobrien	is is a STRING
1559243Sobrien	> echo $a:[#]
1659243Sobrien	16
1759243Sobrien	> echo $a:[6-7]
1859243Sobrien	is
1959243Sobrien	> echo $a:[-2]
2059243Sobrien	ng
2159243Sobrien	> echo $a:[-20]
2259243Sobrien	Subscript out of bounds.
2359243Sobrien	> echo $a:[2-20]
2459243Sobrien	Subscript out of bounds.
2559243Sobrien	> echo $a:[1-1]:u$a:[2-].
2659243Sobrien	This is a string.
2759243Sobrien
2859243Sobrien* Fix pipelines that contain builtins so that they behave correctly.
2959243Sobrien  I tried to fix that (most of the code is in sh.sem.c, but it works
3059243Sobrien  only for non POSIX machines cause otherwise the setpgid() I added
3159243Sobrien  fails).
3259243Sobrien
3359243Sobrien* Fix the correct code... How to do that involves A.I....
3459243Sobrien
3559243Sobrien* Rewrite the whole thing. It has taken to much beating over the years...
3659243Sobrien
3759243Sobrien* Add another hook like precmd to be executed after the prompt but before the
3859243Sobrien  command.
3959243Sobrien
4059243Sobrien* Add instructions for using configure in the README file.
41