aboutsummaryrefslogtreecommitdiffstats
path: root/src/syntax.c
diff options
context:
space:
mode:
authorDave Love2002-11-14 14:17:40 +0000
committerDave Love2002-11-14 14:17:40 +0000
commitddc447fcffd7619965bd8dbc3d65470ce521db77 (patch)
treea77747bf865c7c99762839b5375a7795daa4a8eb /src/syntax.c
parent250368afb5c8de9166e5cfeff469e1a17daeb2a6 (diff)
downloademacs-ddc447fcffd7619965bd8dbc3d65470ce521db77.tar.gz
emacs-ddc447fcffd7619965bd8dbc3d65470ce521db77.zip
(scan_sexps_forward):
Declare all args (per C99).
Diffstat (limited to 'src/syntax.c')
-rw-r--r--src/syntax.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/syntax.c b/src/syntax.c
index 5114fc06af7..b217404e87d 100644
--- a/src/syntax.c
+++ b/src/syntax.c
@@ -2467,7 +2467,7 @@ scan_sexps_forward (stateptr, from, from_byte, end, targetdepth,
2467 stopbefore, oldstate, commentstop) 2467 stopbefore, oldstate, commentstop)
2468 struct lisp_parse_state *stateptr; 2468 struct lisp_parse_state *stateptr;
2469 register int from; 2469 register int from;
2470 int end, targetdepth, stopbefore; 2470 int end, targetdepth, stopbefore, from_byte;
2471 Lisp_Object oldstate; 2471 Lisp_Object oldstate;
2472 int commentstop; 2472 int commentstop;
2473{ 2473{