Mercurial > emacs
diff src/cm.c @ 109144:7dceae91724c
Convert most remaining function definitions to standard C.
* buffer.c, cm.c, eval.c, keyboard.c, process.c, term.c, vm-limit.c,
* xdisp.c: Convert function definitions to standard C.
* cm.c (cmputc): Arg C is now int, not char.
* process.c (Fmake_network_process): Cast sockaddr_in* to sockaddr*.
| author | Juanma Barranquero <lekktu@gmail.com> |
|---|---|
| date | Mon, 05 Jul 2010 12:36:06 +0200 |
| parents | 71150397fb59 |
| children | 750db9f3e6d8 |
line wrap: on
line diff
--- a/src/cm.c Mon Jul 05 12:28:27 2010 +0200 +++ b/src/cm.c Mon Jul 05 12:36:06 2010 +0200 @@ -45,8 +45,7 @@ /* ARGSUSED */ int -evalcost (c) - int c; +evalcost (int c) { cost++; return c; @@ -56,8 +55,7 @@ struct tty_display_info *current_tty; int -cmputc (c) - char c; +cmputc (int c) { if (current_tty->termscript) putc (c & 0177, current_tty->termscript); @@ -326,9 +324,7 @@ #define USECR 3 void -cmgoto (tty, row, col) - struct tty_display_info *tty; - int row, col; +cmgoto (struct tty_display_info *tty, int row, int col) { int homecost, crcost,
