diff options
| author | jonb <none@none> | 2006-01-20 10:51:59 -0800 |
|---|---|---|
| committer | jonb <none@none> | 2006-01-20 10:51:59 -0800 |
| commit | 1de7ff79aa681dad1598edaf52be6493d01ff971 (patch) | |
| tree | 172dfefaa1290084b4e3b438f482f30977bd1a9d /usr/src/cmd/csh/sh.h | |
| parent | 865e09a46b399ddcc8d4eec1badf3470c04f0f9a (diff) | |
| download | illumos-joyent-1de7ff79aa681dad1598edaf52be6493d01ff971.tar.gz | |
PSARC/2005/460 Increasing the shell variable name length in csh
1191119 *csh* : can't use the set command for variable larger than 21 characters in csh
Diffstat (limited to 'usr/src/cmd/csh/sh.h')
| -rw-r--r-- | usr/src/cmd/csh/sh.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr/src/cmd/csh/sh.h b/usr/src/cmd/csh/sh.h index 590f646834..a8f4ec9cb1 100644 --- a/usr/src/cmd/csh/sh.h +++ b/usr/src/cmd/csh/sh.h @@ -1,5 +1,5 @@ /* - * Copyright 2005 Sun Microsystems, Inc. All rights reserved. + * Copyright 2006 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ @@ -386,9 +386,9 @@ struct varent *adrof1(); #define value(v) value1(v, &shvhed) /* - * MAX_VAR_LEN - maximum variable name defined by csh man page to be 20 + * MAX_VAR_LEN - maximum variable name defined by csh man page to be 128 */ -#define MAX_VAR_LEN 20 +#define MAX_VAR_LEN 128 /* * MAX_VREF_LEN - maximum variable reference $name[...] |
