diff options
Diffstat (limited to 'Src')
-rw-r--r-- | Src/loop.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Src/loop.c b/Src/loop.c index 4def9b652..19d7f733e 100644 --- a/Src/loop.c +++ b/Src/loop.c @@ -493,7 +493,9 @@ execrepeat(Estate state, UNUSED(int do_exec)) tmp = ecgetstr(state, EC_DUPTOK, &htok); if (htok) singsub(&tmp); - count = atoi(tmp); + count = mathevali(tmp); + if (errflag) + return 1; pushheap(); cmdpush(CS_REPEAT); loops++; |