rc

[fork] interactive rc shell
Log | Files | Refs | README | LICENSE

commit a7041ce4c119f290c4dc9f6a002966608c5d8827
parent c3ebbbf35d712613024488098645f432160f9e26
Author: tjg <tjg>
Date:   Thu, 14 Oct 1999 09:56:21 +0000

  Portability: exporting `path' causes indigestion in CygWin.  Since
  it's virtually impossible for a child `rc' process to inherit `path'
  (which I consider a bug, but it's not going to be fixed now), simply
  don't export `path'.

Diffstat:
MChangeLog | 7+++++++
Mhash.c | 2+-
2 files changed, 8 insertions(+), 1 deletion(-)

diff --git a/ChangeLog b/ChangeLog @@ -629,3 +629,10 @@ Changes since rc-1.5b2 sys_errlist[] where not. Feature: replace `-V' with `version' variable. + +1999-10-14 + + Portability: exporting `path' causes indigestion in CygWin. Since + it's virtually impossible for a child `rc' process to inherit `path' + (which I consider a bug, but it's not going to be fixed now), simply + don't export `path'. diff --git a/hash.c b/hash.c @@ -230,7 +230,7 @@ extern void initenv(char **envp) { static bool var_exportable(char *s) { static char *notforexport[] = { - "apid", "apids", "ifs", "pid", "version", "*" + "apid", "apids", "ifs", "path", "pid", "version", "*" }; int i; for (i = 0; i < arraysize(notforexport); i++)