diff options
| author | Juanma Barranquero | 2007-06-08 20:11:04 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2007-06-08 20:11:04 +0000 |
| commit | fcd69a29888e9e578169961dae3eee350616fd1d (patch) | |
| tree | 7fbdfe7f07676f11c103f2cb99e7e8fbb521d4f4 /src | |
| parent | de47a796fe209c698a6b3974b5633c458afabee4 (diff) | |
| download | emacs-fcd69a29888e9e578169961dae3eee350616fd1d.tar.gz emacs-fcd69a29888e9e578169961dae3eee350616fd1d.zip | |
(cmd_error_internal): Use empty_unibyte_string.
Diffstat (limited to 'src')
| -rw-r--r-- | src/keyboard.c | 2 |
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. */ |