Mercurial > hg > xemacs-beta
diff src/eval.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 | 61855263cb07 |
children | 13a418960a88 |
line wrap: on
line diff
--- a/src/eval.c Mon Sep 20 19:11:29 2004 +0000 +++ b/src/eval.c Mon Sep 20 19:20:08 2004 +0000 @@ -411,7 +411,7 @@ /************************************************************************/ static void -print_subr (Lisp_Object obj, Lisp_Object printcharfun, int escapeflag) +print_subr (Lisp_Object obj, Lisp_Object printcharfun, int UNUSED (escapeflag)) { Lisp_Subr *subr = XSUBR (obj); const CIbyte *header = @@ -4747,7 +4747,7 @@ } void -check_allowed_operation (int what, Lisp_Object obj, Lisp_Object prop) +check_allowed_operation (int what, Lisp_Object obj, Lisp_Object UNUSED (prop)) { if (inhibit_flags & INHIBIT_EXISTING_BUFFER_TEXT_MODIFICATION) {