1
0
mirror of https://github.com/rfivet/uemacs.git synced 2024-06-09 13:30:43 +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: case EVLWIDTH:
break; break;
case EVLINE: case EVLINE:
putctext(value); return putctext( value) ;
case EVGFLAGS: case EVGFLAGS:
gflags = atoi(value); gflags = atoi(value);
break; break;