Mercurial > hg > xemacs-beta
diff src/editfns.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/editfns.c Mon Sep 20 19:11:29 2004 +0000 +++ b/src/editfns.c Mon Sep 20 19:20:08 2004 +0000 @@ -1553,7 +1553,7 @@ The optional fourth arg BUFFER specifies the buffer to insert the text into. If BUFFER is nil, the current buffer is assumed. */ - (character, count, ignored, buffer)) + (character, count, UNUSED (ignored), buffer)) { /* This function can GC */ REGISTER Ibyte *string; @@ -2329,7 +2329,7 @@ Transposing beyond buffer boundaries is an error. */ - (start1, end1, start2, end2, leave_markers)) + (start1, end1, start2, end2, UNUSED (leave_markers))) { Charbpos startr1, endr1, startr2, endr2; Charcount len1, len2;