diff options
| author | Juanma Barranquero | 2002-07-11 15:24:13 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2002-07-11 15:24:13 +0000 |
| commit | 65b21658119ab3b1ffab17f38709db33bcba2185 (patch) | |
| tree | c926e04d33f6c4bd5c1ae2e48ff79d691f08b895 /src/macros.c | |
| parent | 89297f2344234055f62a1013b26450613ecf8964 (diff) | |
| download | emacs-65b21658119ab3b1ffab17f38709db33bcba2185.tar.gz emacs-65b21658119ab3b1ffab17f38709db33bcba2185.zip | |
Use macro SPECPDL_INDEX.
Diffstat (limited to 'src/macros.c')
| -rw-r--r-- | src/macros.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/macros.c b/src/macros.c index 82e305f8df3..5f6d83b52d6 100644 --- a/src/macros.c +++ b/src/macros.c | |||
| @@ -284,7 +284,7 @@ COUNT is a repeat count, or nil for once, or 0 for infinite loop. */) | |||
| 284 | { | 284 | { |
| 285 | Lisp_Object final; | 285 | Lisp_Object final; |
| 286 | Lisp_Object tem; | 286 | Lisp_Object tem; |
| 287 | int pdlcount = specpdl_ptr - specpdl; | 287 | int pdlcount = SPECPDL_INDEX (); |
| 288 | int repeat = 1; | 288 | int repeat = 1; |
| 289 | struct gcpro gcpro1; | 289 | struct gcpro gcpro1; |
| 290 | int success_count = 0; | 290 | int success_count = 0; |