aboutsummaryrefslogtreecommitdiffstats
path: root/src/mocklisp.c
diff options
context:
space:
mode:
authorJim Blandy1991-07-03 00:08:25 +0000
committerJim Blandy1991-07-03 00:08:25 +0000
commitabc367df62dfbd793ea6847f3c6e3de49193ee98 (patch)
tree13f88522991ece32e33de6d6ff4fa4c78854e8ca /src/mocklisp.c
parent36f7ba0a1e3ee4a5ae38e1bea50dbee5d953e992 (diff)
downloademacs-abc367df62dfbd793ea6847f3c6e3de49193ee98.tar.gz
emacs-abc367df62dfbd793ea6847f3c6e3de49193ee98.zip
*** empty log message ***
Diffstat (limited to 'src/mocklisp.c')
-rw-r--r--src/mocklisp.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/mocklisp.c b/src/mocklisp.c
index 86243fc987d..5f0800f94c1 100644
--- a/src/mocklisp.c
+++ b/src/mocklisp.c
@@ -205,10 +205,6 @@ is converted into a string by expressing it in decimal.")
205{ 205{
206 register int argnum; 206 register int argnum;
207 register Lisp_Object tem; 207 register Lisp_Object tem;
208 struct gcpro gcpro1;
209
210 GCPRO1 (*args);
211 gcpro1.nvars = nargs;
212 208
213 for (argnum = 0; argnum < nargs; argnum++) 209 for (argnum = 0; argnum < nargs; argnum++)
214 { 210 {
@@ -225,7 +221,6 @@ is converted into a string by expressing it in decimal.")
225 } 221 }
226 } 222 }
227 223
228 UNGCPRO;
229 return Qnil; 224 return Qnil;
230} 225}
231 226