diff options
| author | Stefan Monnier | 2013-02-17 11:49:27 -0500 |
|---|---|---|
| committer | Stefan Monnier | 2013-02-17 11:49:27 -0500 |
| commit | 2f73da9c57872b084be2b0627092fa6d142f027f (patch) | |
| tree | 9aa663dc885dd6a43d3e632dd57f303c73006646 /src/xml.c | |
| parent | 53db1d8b92a31a02f82d2bd52f46a041d3bb82b8 (diff) | |
| download | emacs-2f73da9c57872b084be2b0627092fa6d142f027f.tar.gz emacs-2f73da9c57872b084be2b0627092fa6d142f027f.zip | |
Prefer `message1' over `message'.
* src/xml.c (init_libxml2_functions):
* src/sound.c (sound_warning):
* src/sheap.c (report_sheap_usage):
* src/process.c (wait_reading_process_output):
* src/msdos.c (XMenuActivate):
* src/macros.c (Fstart_kbd_macro, Fend_kbd_macro):
* src/keyboard.c (top_level_1):
* src/editfns.c (Fmessage, Fmessage_box):
* src/callint.c (Fcall_interactively):
* src/fns.c (Fyes_or_no_p): Prefer `message1' over `message'.
Diffstat (limited to 'src/xml.c')
| -rw-r--r-- | src/xml.c | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -93,7 +93,7 @@ init_libxml2_functions (void) | |||
| 93 | 93 | ||
| 94 | if (!(library = w32_delayed_load (Qlibxml2_dll))) | 94 | if (!(library = w32_delayed_load (Qlibxml2_dll))) |
| 95 | { | 95 | { |
| 96 | message ("%s", "libxml2 library not found"); | 96 | message1 ("libxml2 library not found"); |
| 97 | return 0; | 97 | return 0; |
| 98 | } | 98 | } |
| 99 | 99 | ||