diff options
Diffstat (limited to 'src/syntax.c')
| -rw-r--r-- | src/syntax.c | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/src/syntax.c b/src/syntax.c index 3857f15cd10..9b707c6c3b7 100644 --- a/src/syntax.c +++ b/src/syntax.c | |||
| @@ -2861,14 +2861,10 @@ This includes chars with "quote" or "prefix" syntax (' or p). */) | |||
| 2861 | after the beginning of a string, or after the end of a string. */ | 2861 | after the beginning of a string, or after the end of a string. */ |
| 2862 | 2862 | ||
| 2863 | static void | 2863 | static void |
| 2864 | scan_sexps_forward (stateptr, from, from_byte, end, targetdepth, | 2864 | scan_sexps_forward (struct lisp_parse_state *stateptr, |
| 2865 | stopbefore, oldstate, commentstop) | 2865 | EMACS_INT from, EMACS_INT from_byte, EMACS_INT end, |
| 2866 | struct lisp_parse_state *stateptr; | 2866 | int targetdepth, int stopbefore, |
| 2867 | register EMACS_INT from; | 2867 | Lisp_Object oldstate, int commentstop) |
| 2868 | EMACS_INT from_byte, end; | ||
| 2869 | int targetdepth, stopbefore; | ||
| 2870 | Lisp_Object oldstate; | ||
| 2871 | int commentstop; | ||
| 2872 | { | 2868 | { |
| 2873 | struct lisp_parse_state state; | 2869 | struct lisp_parse_state state; |
| 2874 | 2870 | ||