comparison src/cm.c @ 2286:04bc9d2f42c7

[xemacs-hg @ 2004-09-20 19:18:55 by james] Mark all unused parameters as unused. Also eliminate some unneeded local variables.
author james
date Mon, 20 Sep 2004 19:20:08 +0000
parents 79c6ff3eef26
children 3d8143fc88e1
comparison
equal deleted inserted replaced
2285:914c5afaac33 2286:04bc9d2f42c7
41 static void cmgoto_for_real (struct console *c, int row, int col); 41 static void cmgoto_for_real (struct console *c, int row, int col);
42 42
43 static int cm_cost_counter; /* sums up costs */ 43 static int cm_cost_counter; /* sums up costs */
44 44
45 static void 45 static void
46 evalcost (int c) 46 evalcost (int UNUSED (c))
47 { 47 {
48 cm_cost_counter++; 48 cm_cost_counter++;
49 } 49 }
50 50
51 /* Ugh -- cmputc() can't take a console argument, so we pass it in a global */ 51 /* Ugh -- cmputc() can't take a console argument, so we pass it in a global */