-/* $OpenBSD: bcode.c,v 1.53 2017/11/28 08:03:01 otto Exp $ */
+/* $OpenBSD: bcode.c,v 1.54 2017/11/28 09:44:14 otto Exp $ */
/*
* Copyright (c) 2003, Otto Moerbeek <otto@drijf.net>
static void
skip_until_mark(void)
{
- int ch;
-
for (;;) {
- ch = readch();
- switch (ch) {
+ switch (readch()) {
case 'M':
return;
case EOF:
free(read_string(&bmachine.readstack[bmachine.readsp]));
break;
case '!':
- switch (ch = readch()) {
+ switch (readch()) {
case '<':
case '>':
case '=':