summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDave Love <fx@gnu.org>2002-11-14 14:17:40 +0000
committerDave Love <fx@gnu.org>2002-11-14 14:17:40 +0000
commitddc447fcffd7619965bd8dbc3d65470ce521db77 (patch)
treea77747bf865c7c99762839b5375a7795daa4a8eb /src
parent250368afb5c8de9166e5cfeff469e1a17daeb2a6 (diff)
downloademacs-ddc447fcffd7619965bd8dbc3d65470ce521db77.tar.gz
emacs-ddc447fcffd7619965bd8dbc3d65470ce521db77.tar.bz2
emacs-ddc447fcffd7619965bd8dbc3d65470ce521db77.zip
(scan_sexps_forward):
Declare all args (per C99).
Diffstat (limited to 'src')
-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,
stopbefore, oldstate, commentstop)
struct lisp_parse_state *stateptr;
register int from;
- int end, targetdepth, stopbefore;
+ int end, targetdepth, stopbefore, from_byte;
Lisp_Object oldstate;
int commentstop;
{