Mercurial > hg > xemacs-beta
diff src/extents.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 | a8d8f419b459 |
children | ecf1ebac70d8 |
line wrap: on
line diff
--- a/src/extents.c Mon Sep 20 19:11:29 2004 +0000 +++ b/src/extents.c Mon Sep 20 19:20:08 2004 +0000 @@ -1702,7 +1702,8 @@ static void signal_single_extent_changed (EXTENT extent, Lisp_Object property, - Bytexpos old_start, Bytexpos old_end) + Bytexpos UNUSED (old_start), + Bytexpos UNUSED (old_end)) { EXTENT anc = extent_ancestor (extent); /* Redisplay checks */ @@ -3109,7 +3110,8 @@ } static void -print_extent_1 (Lisp_Object obj, Lisp_Object printcharfun, int escapeflag) +print_extent_1 (Lisp_Object obj, Lisp_Object printcharfun, + int UNUSED (escapeflag)) { EXTENT ext = XEXTENT (obj); EXTENT anc = extent_ancestor (ext); @@ -7236,7 +7238,8 @@ #ifdef MEMORY_USAGE_STATS int -compute_buffer_extent_usage (struct buffer *b, struct overhead_stats *ovstats) +compute_buffer_extent_usage (struct buffer *UNUSED (b), + struct overhead_stats *UNUSED (ovstats)) { /* #### not yet written */ return 0;