aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1994-06-02 23:47:26 +0000
committerKarl Heuer1994-06-02 23:47:26 +0000
commitb5587215318461bae4c7fada841b568095a91ea1 (patch)
tree3cc0c3e920e653f40132ecbe532cc1cfc88a958b /src
parented8f1660175c57882d4369c01a5d4ae39a8b1a4d (diff)
downloademacs-b5587215318461bae4c7fada841b568095a91ea1.tar.gz
emacs-b5587215318461bae4c7fada841b568095a91ea1.zip
(xdialog_show): Fix problem with message in dialog box.
Diffstat (limited to 'src')
-rw-r--r--src/xmenu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xmenu.c b/src/xmenu.c
index ba92c90787f..a00bcb1a78b 100644
--- a/src/xmenu.c
+++ b/src/xmenu.c
@@ -1901,7 +1901,7 @@ xdialog_show (f, menubarp, keymaps, title, error)
1901#if 0 /* This causes crashes, and seems to be redundant -- rms. */ 1901#if 0 /* This causes crashes, and seems to be redundant -- rms. */
1902 lw_modify_all_widgets (dialog_id, first_wv, True); 1902 lw_modify_all_widgets (dialog_id, first_wv, True);
1903#endif 1903#endif
1904 lw_modify_all_widgets (dialog_id, first_wv->contents->next, True); 1904 lw_modify_all_widgets (dialog_id, first_wv->contents, True);
1905 /* Free the widget_value objects we used to specify the contents. */ 1905 /* Free the widget_value objects we used to specify the contents. */
1906 free_menubar_widget_value_tree (first_wv); 1906 free_menubar_widget_value_tree (first_wv);
1907 1907