Mercurial > hg > xemacs-beta
comparison src/lread.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 | 61855263cb07 |
children | ecf1ebac70d8 |
comparison
equal
deleted
inserted
replaced
2285:914c5afaac33 | 2286:04bc9d2f42c7 |
---|---|
2746 int allow_dotted_lists; | 2746 int allow_dotted_lists; |
2747 Ichar terminator; | 2747 Ichar terminator; |
2748 }; | 2748 }; |
2749 | 2749 |
2750 static void * | 2750 static void * |
2751 read_list_conser (Lisp_Object readcharfun, void *state, Charcount len) | 2751 read_list_conser (Lisp_Object readcharfun, void *state, Charcount UNUSED (len)) |
2752 { | 2752 { |
2753 struct read_list_state *s = (struct read_list_state *) state; | 2753 struct read_list_state *s = (struct read_list_state *) state; |
2754 Lisp_Object elt; | 2754 Lisp_Object elt; |
2755 | 2755 |
2756 elt = read1 (readcharfun); | 2756 elt = read1 (readcharfun); |