diff options
| author | Kim F. Storm | 2005-06-08 22:32:33 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2005-06-08 22:32:33 +0000 |
| commit | 5fe2b5a58dc9d211eb523b11f2731b03b8bd525d (patch) | |
| tree | fca3c7d18ae80358d86d65e06beeff9073ffb562 /src | |
| parent | abd0071cac2757eb7d1f34ae3c7e15c5093df77d (diff) | |
| download | emacs-5fe2b5a58dc9d211eb523b11f2731b03b8bd525d.tar.gz emacs-5fe2b5a58dc9d211eb523b11f2731b03b8bd525d.zip | |
(Fmatch_data, Fset_match_data): Fix EXFUN.
(record_unwind_save_match_data): Add prototype.
(restore_search_regs): Rename from restore_match_data.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lisp.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/lisp.h b/src/lisp.h index b6ba06e17f8..e1a7e61c70a 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -2768,6 +2768,7 @@ EXFUN (Fbuffer_disable_undo, 1); | |||
| 2768 | EXFUN (Fbuffer_enable_undo, 1); | 2768 | EXFUN (Fbuffer_enable_undo, 1); |
| 2769 | EXFUN (Ferase_buffer, 0); | 2769 | EXFUN (Ferase_buffer, 0); |
| 2770 | extern Lisp_Object Qoverlayp; | 2770 | extern Lisp_Object Qoverlayp; |
| 2771 | extern Lisp_Object Qevaporate; | ||
| 2771 | extern Lisp_Object get_truename_buffer P_ ((Lisp_Object)); | 2772 | extern Lisp_Object get_truename_buffer P_ ((Lisp_Object)); |
| 2772 | extern struct buffer *all_buffers; | 2773 | extern struct buffer *all_buffers; |
| 2773 | EXFUN (Fprevious_overlay_change, 1); | 2774 | EXFUN (Fprevious_overlay_change, 1); |
| @@ -2835,11 +2836,12 @@ extern void syms_of_abbrev P_ ((void)); | |||
| 2835 | /* defined in search.c */ | 2836 | /* defined in search.c */ |
| 2836 | extern void shrink_regexp_cache P_ ((void)); | 2837 | extern void shrink_regexp_cache P_ ((void)); |
| 2837 | EXFUN (Fstring_match, 3); | 2838 | EXFUN (Fstring_match, 3); |
| 2838 | extern void restore_match_data P_ ((void)); | 2839 | extern void restore_search_regs P_ ((void)); |
| 2839 | EXFUN (Fmatch_data, 2); | 2840 | EXFUN (Fmatch_data, 3); |
| 2840 | EXFUN (Fset_match_data, 1); | 2841 | EXFUN (Fset_match_data, 2); |
| 2841 | EXFUN (Fmatch_beginning, 1); | 2842 | EXFUN (Fmatch_beginning, 1); |
| 2842 | EXFUN (Fmatch_end, 1); | 2843 | EXFUN (Fmatch_end, 1); |
| 2844 | extern void record_unwind_save_match_data P_ ((void)); | ||
| 2843 | EXFUN (Flooking_at, 1); | 2845 | EXFUN (Flooking_at, 1); |
| 2844 | extern int fast_string_match P_ ((Lisp_Object, Lisp_Object)); | 2846 | extern int fast_string_match P_ ((Lisp_Object, Lisp_Object)); |
| 2845 | extern int fast_c_string_match_ignore_case P_ ((Lisp_Object, const char *)); | 2847 | extern int fast_c_string_match_ignore_case P_ ((Lisp_Object, const char *)); |