re-enable lower-casing of tokens beginning with 'cd',

except for command 'cd' which is usually followed by a space.
This commit is contained in:
Holger Vogt 2021-09-07 12:42:20 +02:00
parent 0266bd5894
commit 3599c189b6
1 changed files with 1 additions and 1 deletions

View File

@ -1472,7 +1472,7 @@ struct inp_read_t inp_read( FILE *fp, int call_depth, const char *dir_name,
!ciprefix(".lib", buffer) && !ciprefix(".inc", buffer) &&
!ciprefix("codemodel", buffer) &&
!ciprefix("echo", buffer) && !ciprefix("shell", buffer) &&
!ciprefix("source", buffer) && !ciprefix("cd", buffer) &&
!ciprefix("source", buffer) && !ciprefix("cd ", buffer) &&
!ciprefix("load", buffer) && !ciprefix("setcs", buffer)) {
/* lower case for all other lines */
for (s = buffer; *s && (*s != '\n'); s++)