[comp.emacs] Variable names with underbars

strong@bell.cad.mcc.COM (Mike Strong) (12/15/87)

The following is the diff output for a minor fix I made that allows
you to cd, pushd, and ctl-x ctl-f a file using shell environment
variables that have underbars.  We have several environment variables
that have underbars and emacs was forever losing track of where one
was in his or her shell. It still does not know regexp syntax for
wildcarding files.

This is against the 18.49 release of fileio.c:
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
814c814
< 	    while (p != endp && isalnum(*p)) p++;
---
> 	    while (p != endp && (isalnum(*p) || (*p == '_'))) p++;
869c869
< 	    while (p != endp && isalnum(*p)) p++;
---
> 	    while (p != endp && (isalnum(*p) || (*p == '_'))) p++;
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

Michael Strong
@ MCC VLSI CAD Program [512] 338-3642
P.O. Box 200195, Austin, TX 78720
3500 West Balcones Center Drive, Austin, Tx 78759
ARPA: strong@mcc.com
UUCP: {ihnp4,seismo,harvard,gatech,pyramid}!ut-sally!strong%mcc.com