no lower case after redirection sign > for command 'asciiplot'
This commit is contained in:
parent
7a1218cc0e
commit
639bfc6280
|
|
@ -959,6 +959,7 @@ inp_read(FILE *fp, int call_depth, char *dir_name, bool comfile, bool intfile)
|
|||
!ciprefix("load", buffer) &&
|
||||
!ciprefix("plot", buffer) &&
|
||||
!ciprefix("print", buffer) &&
|
||||
!ciprefix("asciiplot", buffer) &&
|
||||
!ciprefix("gnuplot", buffer) &&
|
||||
!ciprefix("hardcopy", buffer) &&
|
||||
!(ciprefix("set", buffer) && strstr(buffer, "sourcepath"))
|
||||
|
|
@ -1029,7 +1030,7 @@ inp_read(FILE *fp, int call_depth, char *dir_name, bool comfile, bool intfile)
|
|||
}
|
||||
}
|
||||
}
|
||||
else if (ciprefix("print", buffer)) {
|
||||
else if (ciprefix("print", buffer) || ciprefix("asciiplot", buffer)) {
|
||||
/* lower case excluded for tokens following output redirection '>' */
|
||||
bool redir = FALSE;
|
||||
for (s = buffer; *s && (*s != '\n'); s++) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue