diff options
| author | Jim Blandy | 1991-06-24 23:22:15 +0000 |
|---|---|---|
| committer | Jim Blandy | 1991-06-24 23:22:15 +0000 |
| commit | 36e37d632e6f089a89f4fc59ae6c2bf90d37e9d3 (patch) | |
| tree | 832d793ace89b596d3600851d362421414dd08b1 /src/mocklisp.c | |
| parent | c23ae0440bc2ad23237142545edfb741dba4dc2f (diff) | |
| download | emacs-36e37d632e6f089a89f4fc59ae6c2bf90d37e9d3.tar.gz emacs-36e37d632e6f089a89f4fc59ae6c2bf90d37e9d3.zip | |
*** empty log message ***
Diffstat (limited to 'src/mocklisp.c')
| -rw-r--r-- | src/mocklisp.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mocklisp.c b/src/mocklisp.c index 5fb34ae74cc..86243fc987d 100644 --- a/src/mocklisp.c +++ b/src/mocklisp.c | |||
| @@ -205,6 +205,10 @@ 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; | ||
| 208 | 212 | ||
| 209 | for (argnum = 0; argnum < nargs; argnum++) | 213 | for (argnum = 0; argnum < nargs; argnum++) |
| 210 | { | 214 | { |
| @@ -220,6 +224,8 @@ is converted into a string by expressing it in decimal.") | |||
| 220 | goto retry; | 224 | goto retry; |
| 221 | } | 225 | } |
| 222 | } | 226 | } |
| 227 | |||
| 228 | UNGCPRO; | ||
| 223 | return Qnil; | 229 | return Qnil; |
| 224 | } | 230 | } |
| 225 | 231 | ||