Mercurial > hg > xemacs-beta
comparison src/bytecode.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 | 4e6a63799f08 |
children | ecf1ebac70d8 |
comparison
equal
deleted
inserted
replaced
2285:914c5afaac33 | 2286:04bc9d2f42c7 |
---|---|
1346 rarely executed code, to minimize cache misses. | 1346 rarely executed code, to minimize cache misses. |
1347 | 1347 |
1348 Don't make this function static, since then the compiler might inline it. */ | 1348 Don't make this function static, since then the compiler might inline it. */ |
1349 Lisp_Object * | 1349 Lisp_Object * |
1350 execute_rare_opcode (Lisp_Object *stack_ptr, | 1350 execute_rare_opcode (Lisp_Object *stack_ptr, |
1351 const Opbyte *program_ptr, | 1351 const Opbyte *UNUSED (program_ptr), |
1352 Opcode opcode) | 1352 Opcode opcode) |
1353 { | 1353 { |
1354 switch (opcode) | 1354 switch (opcode) |
1355 { | 1355 { |
1356 | 1356 |