Mercurial > hg > xemacs-beta
diff src/sunpro.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 | 943eaba38521 |
children | e91cf17f6ab7 |
line wrap: on
line diff
--- a/src/sunpro.c Mon Sep 20 19:11:29 2004 +0000 +++ b/src/sunpro.c Mon Sep 20 19:20:08 2004 +0000 @@ -46,7 +46,11 @@ function has no effect and always returns `nil'. See function `has-usage-tracking-p'. */ - (int nargs, Lisp_Object *args)) +#ifdef USAGE_TRACKING + (int nargs, Lisp_Object *args) +#else + (int UNUSED (nargs), Lisp_Object *UNUSED (args)) +#endif { #ifdef USAGE_TRACKING Lisp_Object xs;