From 132bc8f41c24a12e733376fb6d9db6b49fa8016f Mon Sep 17 00:00:00 2001 From: Alexander Krotov Date: Sat, 20 Jun 2020 01:41:45 +0300 Subject: [PATCH] _type: exit if input is not available Currently when BUF _type is executed, if there is a newline immediately after _type, no input is available. C< returns 0, and it is stored in the buffer. _type then proceeds to read until another newline is reached, and the resulting buffer contents looks like "\x00xyz\x0d" (in C string notation). This change makes _type exit early in this case and keep the buffer unchanged. _type is used by editor words such as I and F, so this bug affects them as well. --- blk/108 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blk/108 b/blk/108 index 97c6917..d7532c5 100644 --- a/blk/108 +++ b/blk/108 @@ -1,4 +1,5 @@ : _type ( buf -- ) + C