From: Richard M. Stallman Date: Fri, 21 Jan 2005 00:32:36 +0000 (+0000) Subject: (Fmessage): If arg is "", return "" (as before). X-Git-Tag: ttn-vms-21-2-B4~2649 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=674a954a1deba3f9a5a382f2bfe4a0b48e71e204;p=emacs.git (Fmessage): If arg is "", return "" (as before). --- 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 {