From: Juanma Barranquero Date: Fri, 8 Jun 2007 20:11:04 +0000 (+0000) Subject: (cmd_error_internal): Use empty_unibyte_string. X-Git-Tag: emacs-pretest-23.0.90~12386 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=fcd69a29888e9e578169961dae3eee350616fd1d;p=emacs.git (cmd_error_internal): Use empty_unibyte_string. --- diff --git a/src/keyboard.c b/src/keyboard.c index ab2d50ad0ea..1837958dcfd 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -1249,7 +1249,7 @@ cmd_error_internal (data, context) /* Use user's specified output function if any. */ if (!NILP (Vcommand_error_function)) call3 (Vcommand_error_function, data, - build_string (context ? context : ""), + context ? build_string (context) : empty_unibyte_string, Vsignaling_function); /* If the window system or terminal frame hasn't been initialized yet, or we're not interactive, write the message to stderr and exit. */