Mercurial > hg > xemacs-beta
diff src/database.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 | 080d479edd32 |
children | ec25549f1f43 |
line wrap: on
line diff
--- a/src/database.c Mon Sep 20 19:11:29 2004 +0000 +++ b/src/database.c Mon Sep 20 19:20:08 2004 +0000 @@ -161,7 +161,8 @@ } static void -print_database (Lisp_Object obj, Lisp_Object printcharfun, int escapeflag) +print_database (Lisp_Object obj, Lisp_Object printcharfun, + int UNUSED (escapeflag)) { Lisp_Database *db = XDATABASE (obj); @@ -368,7 +369,7 @@ #ifdef HAVE_BERKELEY_DB static Lisp_Object -berkdb_type (Lisp_Database *db) +berkdb_type (Lisp_Database *UNUSED (db)) { return Qberkeley_db; }