rc

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

commit 8f81d22c989808d3889a7ad6806903adec5ae27b
parent 192d9da98404dc93eb1e5bcc2b1c810d5c6c8435
Author: tjg <tjg>
Date:   Thu, 15 Aug 2002 12:51:27 +0000

  Bug: variables that are sometimes exported (i.e. $prompt and
  $version) need to be made exportable if they are inherited from the
  environment.

Diffstat:
MChangeLog | 6++++++
Mvar.c | 1+
2 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/ChangeLog b/ChangeLog @@ -796,3 +796,9 @@ Changes since rc-1.5b2 2002-07-31 Bug: readline doesn't handle EIO either. + +2002-08-15 + + Bug: variables that are sometimes exported (i.e. $prompt and + $version) need to be made exportable if they are inherited from the + environment. diff --git a/var.c b/var.c @@ -48,6 +48,7 @@ extern bool varassign_string(char *extdef) { strcpy(new->extdef, extdef); if (i != -1) alias(name, varlookup(name), FALSE); + set_exportable(name, TRUE); return TRUE; }