diff options
| author | Paul Eggert | 2011-04-05 13:26:55 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-04-05 13:26:55 -0700 |
| commit | f390e2d53a670e4ebcb6b73f4baeaf792f46c112 (patch) | |
| tree | fc9abeff47b869176ae493059089f4f90eb409aa /src/xmenu.c | |
| parent | 42eea0d01a839d6bd024a13577d16108696e11e4 (diff) | |
| download | emacs-f390e2d53a670e4ebcb6b73f4baeaf792f46c112.tar.gz emacs-f390e2d53a670e4ebcb6b73f4baeaf792f46c112.zip | |
* xmenu.c (Fx_popup_dialog): Don't assume string is free of formats.
Diffstat (limited to 'src/xmenu.c')
| -rw-r--r-- | src/xmenu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xmenu.c b/src/xmenu.c index 8ecef00c88e..6e175e69039 100644 --- a/src/xmenu.c +++ b/src/xmenu.c | |||
| @@ -341,7 +341,7 @@ for instance using the window manager, then this produces a quit and | |||
| 341 | unbind_to (specpdl_count, Qnil); | 341 | unbind_to (specpdl_count, Qnil); |
| 342 | discard_menu_items (); | 342 | discard_menu_items (); |
| 343 | 343 | ||
| 344 | if (error_name) error (error_name); | 344 | if (error_name) error ("%s", error_name); |
| 345 | return selection; | 345 | return selection; |
| 346 | } | 346 | } |
| 347 | #endif | 347 | #endif |