do not lower-case command 'set sourcepath = XXX'

This commit is contained in:
Holger Vogt 2018-05-27 07:56:40 +02:00
parent ad2047844f
commit 2f56feea4a
1 changed files with 2 additions and 1 deletions

View File

@ -917,7 +917,8 @@ inp_read(FILE *fp, int call_depth, char *dir_name, bool comfile, bool intfile)
!ciprefix("source", buffer) &&
!ciprefix("load", buffer) &&
!ciprefix("plot", buffer) &&
!ciprefix("hardcopy", buffer)
!ciprefix("hardcopy", buffer) &&
!(ciprefix("set", buffer) && strstr(buffer, "sourcepath"))
)
{
/* lower case for all other lines */