comparison 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
comparison
equal deleted inserted replaced
2285:914c5afaac33 2286:04bc9d2f42c7
44 Args are the same as to `format'. Returns whether the message was 44 Args are the same as to `format'. Returns whether the message was
45 actually logged. If usage-tracking support was not compiled in, this 45 actually logged. If usage-tracking support was not compiled in, this
46 function has no effect and always returns `nil'. See function 46 function has no effect and always returns `nil'. See function
47 `has-usage-tracking-p'. 47 `has-usage-tracking-p'.
48 */ 48 */
49 (int nargs, Lisp_Object *args)) 49 #ifdef USAGE_TRACKING
50 (int nargs, Lisp_Object *args)
51 #else
52 (int UNUSED (nargs), Lisp_Object *UNUSED (args))
53 #endif
50 { 54 {
51 #ifdef USAGE_TRACKING 55 #ifdef USAGE_TRACKING
52 Lisp_Object xs; 56 Lisp_Object xs;
53 unsigned char *s; 57 unsigned char *s;
54 58