Mercurial > emacs
diff src/lisp.h @ 10032:f689803caa92
Added code for automatically saving and restoring the match data
when a filter or sentinel tries to modify it.
author | Francesco Potortì <pot@gnu.org> |
---|---|
date | Mon, 21 Nov 1994 12:50:27 +0000 |
parents | 67375493afa2 |
children | c000ce65503e |
line wrap: on
line diff
--- a/src/lisp.h Sun Nov 20 21:55:55 1994 +0000 +++ b/src/lisp.h Mon Nov 21 12:50:27 1994 +0000 @@ -1404,6 +1404,7 @@ /* defined in search.c */ extern Lisp_Object Fstring_match (); extern Lisp_Object Fscan_buffer (); +extern void restore_match_data (); /* defined in minibuf.c */ @@ -1499,6 +1500,8 @@ extern int noninteractive; /* Nonzero means don't do use window-system-specific display code */ extern int inhibit_window_system; +/* Nonzero means that a filter or a sentinel is running. */ +extern int running_asynch_code; /* defined in process.c */ extern Lisp_Object Fget_process (), Fget_buffer_process (), Fprocessp ();