1
0
mirror of https://github.com/rfivet/uemacs.git synced 2024-06-09 05:20:42 +00:00

CID 39914: Fallthrough in switch was altering value of $gflags when assigning to $line.

This commit is contained in:
Renaud 2015-03-16 13:47:03 +08:00
parent 5f9de6bb89
commit f97746a87b

2
eval.c
View File

@ -1036,7 +1036,7 @@ static int svar(struct variable_description *var, char *value)
case EVLWIDTH:
break;
case EVLINE:
putctext(value);
return putctext( value) ;
case EVGFLAGS:
gflags = atoi(value);
break;