From 674a954a1deba3f9a5a382f2bfe4a0b48e71e204 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Fri, 21 Jan 2005 00:32:36 +0000 Subject: [PATCH] (Fmessage): If arg is "", return "" (as before). --- src/editfns.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/editfns.c b/src/editfns.c index a6cd2c0e16b..0587d66bb0f 100644 --- a/src/editfns.c +++ b/src/editfns.c @@ -3135,7 +3135,7 @@ usage: (message STRING &rest ARGS) */) && SBYTES (args[0]) == 0)) { message (0); - return Qnil; + return args[0]; } else { -- 2.39.5