diff options
| author | Kim F. Storm | 2005-06-08 22:33:36 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2005-06-08 22:33:36 +0000 |
| commit | 89f2614d96b5cf84f01c4903652a6a2b5b23d3d3 (patch) | |
| tree | 9aed849b4b7e3c1a44ba3bd3b6f09a0c3002c06a /src/composite.c | |
| parent | 5fe2b5a58dc9d211eb523b11f2731b03b8bd525d (diff) | |
| download | emacs-89f2614d96b5cf84f01c4903652a6a2b5b23d3d3.tar.gz emacs-89f2614d96b5cf84f01c4903652a6a2b5b23d3d3.zip | |
* composite.c (compose_chars_in_text):
* eval.c (do_autoload):
* macmenu.c (set_frame_menubar):
* process.c (read_process_output, exec_sentinel):
* xmenu.c (set_frame_menubar):
* xdisp.c (prepare_menu_bars, update_menu_bar, update_tool_bar):
* w32menu.c (set_frame_menubar):
Use record_unwind_save_match_data.
Rename restore_match_data to restore_search_regs.
Diffstat (limited to 'src/composite.c')
| -rw-r--r-- | src/composite.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/composite.c b/src/composite.c index f8e655a3685..ff2eed925d1 100644 --- a/src/composite.c +++ b/src/composite.c | |||
| @@ -628,7 +628,7 @@ compose_chars_in_text (start, end, string) | |||
| 628 | } | 628 | } |
| 629 | 629 | ||
| 630 | /* Preserve the match data. */ | 630 | /* Preserve the match data. */ |
| 631 | record_unwind_protect (Fset_match_data, Fmatch_data (Qnil, Qnil)); | 631 | record_unwind_save_match_data (); |
| 632 | 632 | ||
| 633 | /* If none of ASCII characters have composition functions, we can | 633 | /* If none of ASCII characters have composition functions, we can |
| 634 | skip them quickly. */ | 634 | skip them quickly. */ |