aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDave Love2002-11-14 14:13:36 +0000
committerDave Love2002-11-14 14:13:36 +0000
commit1e26d5ef0528fdad1aa485ed79051cb9f9cdb749 (patch)
tree79af11e7eb74dce6bedfabad272189cdaf96dd9e /src
parent020ea113e2060cc9f0838a7975d13424ce665485 (diff)
downloademacs-1e26d5ef0528fdad1aa485ed79051cb9f9cdb749.tar.gz
emacs-1e26d5ef0528fdad1aa485ed79051cb9f9cdb749.zip
(calccost, cmgoto): Declare all args (per C99).
Diffstat (limited to 'src')
-rw-r--r--src/cm.c2
-rw-r--r--src/composite.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/cm.c b/src/cm.c
index 56a1160c593..4e8984493a7 100644
--- a/src/cm.c
+++ b/src/cm.c
@@ -188,6 +188,7 @@ cmcostinit ()
188 188
189static int 189static int
190calccost (srcy, srcx, dsty, dstx, doit) 190calccost (srcy, srcx, dsty, dstx, doit)
191 int srcy, srcx, dsty, dstx, doit;
191{ 192{
192 register int deltay, 193 register int deltay,
193 deltax, 194 deltax,
@@ -323,6 +324,7 @@ losecursor ()
323 324
324void 325void
325cmgoto (row, col) 326cmgoto (row, col)
327 int row, col;
326{ 328{
327 int homecost, 329 int homecost,
328 crcost, 330 crcost,
diff --git a/src/composite.c b/src/composite.c
index 99ffc1fb908..56acce6d1ce 100644
--- a/src/composite.c
+++ b/src/composite.c
@@ -478,7 +478,7 @@ run_composition_function (from, to, prop)
478 478
479void 479void
480update_compositions (from, to, check_mask) 480update_compositions (from, to, check_mask)
481 int from, to; 481 int from, to, check_mask;
482{ 482{
483 Lisp_Object prop; 483 Lisp_Object prop;
484 int start, end; 484 int start, end;