diff options
| author | Dave Love | 2002-11-14 14:13:36 +0000 |
|---|---|---|
| committer | Dave Love | 2002-11-14 14:13:36 +0000 |
| commit | 1e26d5ef0528fdad1aa485ed79051cb9f9cdb749 (patch) | |
| tree | 79af11e7eb74dce6bedfabad272189cdaf96dd9e /src | |
| parent | 020ea113e2060cc9f0838a7975d13424ce665485 (diff) | |
| download | emacs-1e26d5ef0528fdad1aa485ed79051cb9f9cdb749.tar.gz emacs-1e26d5ef0528fdad1aa485ed79051cb9f9cdb749.zip | |
(calccost, cmgoto): Declare all args (per C99).
Diffstat (limited to 'src')
| -rw-r--r-- | src/cm.c | 2 | ||||
| -rw-r--r-- | src/composite.c | 2 |
2 files changed, 3 insertions, 1 deletions
| @@ -188,6 +188,7 @@ cmcostinit () | |||
| 188 | 188 | ||
| 189 | static int | 189 | static int |
| 190 | calccost (srcy, srcx, dsty, dstx, doit) | 190 | calccost (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 | ||
| 324 | void | 325 | void |
| 325 | cmgoto (row, col) | 326 | cmgoto (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 | ||
| 479 | void | 479 | void |
| 480 | update_compositions (from, to, check_mask) | 480 | update_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; |