summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ui/text_import.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/ui/text_import.c b/ui/text_import.c
index 67a8b33980..93db8a2f93 100644
--- a/ui/text_import.c
+++ b/ui/text_import.c
@@ -840,6 +840,12 @@ parse_token (token_t token, char *str)
} else
state = READ_OFFSET;
break;
+ case T_BYTE:
+ if (offset_base == 0) {
+ write_byte(str);
+ state = READ_BYTE;
+ }
+ break;
default:
break;
}