aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1995-05-30 18:46:24 +0000
committerKarl Heuer1995-05-30 18:46:24 +0000
commiteac4251ca6fb1bcbfef792b559c008a8c9064895 (patch)
tree90aa1c050dd308b76ddd6fd95b92e0403c7ee571 /src
parent4809d0dd988ea98407e03e407fd4fd249e7f5bd8 (diff)
downloademacs-eac4251ca6fb1bcbfef792b559c008a8c9064895.tar.gz
emacs-eac4251ca6fb1bcbfef792b559c008a8c9064895.zip
(update_menu_bar): Reverse test of save_match_data.
Diffstat (limited to 'src')
-rw-r--r--src/xdisp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xdisp.c b/src/xdisp.c
index 10837d26581..f711abded46 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -1255,7 +1255,7 @@ update_menu_bar (f, save_match_data)
1255 struct buffer *prev = current_buffer; 1255 struct buffer *prev = current_buffer;
1256 int count = specpdl_ptr - specpdl; 1256 int count = specpdl_ptr - specpdl;
1257 1257
1258 if (!save_match_data) 1258 if (save_match_data)
1259 record_unwind_protect (Fstore_match_data, Fmatch_data ()); 1259 record_unwind_protect (Fstore_match_data, Fmatch_data ());
1260 1260
1261 call1 (Vrun_hooks, Qmenu_bar_update_hook); 1261 call1 (Vrun_hooks, Qmenu_bar_update_hook);