aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2007-06-08 20:11:04 +0000
committerJuanma Barranquero2007-06-08 20:11:04 +0000
commitfcd69a29888e9e578169961dae3eee350616fd1d (patch)
tree7fbdfe7f07676f11c103f2cb99e7e8fbb521d4f4
parentde47a796fe209c698a6b3974b5633c458afabee4 (diff)
downloademacs-fcd69a29888e9e578169961dae3eee350616fd1d.tar.gz
emacs-fcd69a29888e9e578169961dae3eee350616fd1d.zip
(cmd_error_internal): Use empty_unibyte_string.
-rw-r--r--src/keyboard.c2
1 files changed, 1 insertions, 1 deletions
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)
1249 /* Use user's specified output function if any. */ 1249 /* Use user's specified output function if any. */
1250 if (!NILP (Vcommand_error_function)) 1250 if (!NILP (Vcommand_error_function))
1251 call3 (Vcommand_error_function, data, 1251 call3 (Vcommand_error_function, data,
1252 build_string (context ? context : ""), 1252 context ? build_string (context) : empty_unibyte_string,
1253 Vsignaling_function); 1253 Vsignaling_function);
1254 /* If the window system or terminal frame hasn't been initialized 1254 /* If the window system or terminal frame hasn't been initialized
1255 yet, or we're not interactive, write the message to stderr and exit. */ 1255 yet, or we're not interactive, write the message to stderr and exit. */