From be3861f197cfa93c10f1f6a2805eeaae6cef326e Mon Sep 17 00:00:00 2001
From: anon <anon@anon.anon>
Date: Fri, 1 Mar 2024 19:36:52 +0100
Subject: [PATCH] properly report import read message

---
 source/readline.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/source/readline.c b/source/readline.c
index 1c01670..3abc51d 100644
--- a/source/readline.c
+++ b/source/readline.c
@@ -129,7 +129,7 @@ static void callback_handler(char *line) {
 			char filename[PATHLEN + 1];
 			shellpath(filename, sizeof(filename), line);
 			if (!readrefs(filename)) {
-				postmsg("Ignoring an empty file");
+				postmsg2("Ignoring an empty file");
 			}
 			window_change |= CH_INPUT | CH_RESULT;
 			input_mode = INPUT_NORMAL;