diff options
| author | Glenn Morris | 2014-09-02 21:21:40 -0700 |
|---|---|---|
| committer | Glenn Morris | 2014-09-02 21:21:40 -0700 |
| commit | 62fca47221fc9d248511cd94fbcb41ddb46763e6 (patch) | |
| tree | d039e0d0580f884abbfd7515b63ef7bc4aabeaaa /src/eval.c | |
| parent | e6769f18909edfd1bbf6473a1f754ab29e2fb114 (diff) | |
| parent | af86b05fd4b79c3d1c3b71c6193c4295a1265594 (diff) | |
| download | emacs-62fca47221fc9d248511cd94fbcb41ddb46763e6.tar.gz emacs-62fca47221fc9d248511cd94fbcb41ddb46763e6.zip | |
Merge from emacs-24; up to 2014-07-04T02:28:54Z!dmantipov@yandex.ru
Diffstat (limited to 'src/eval.c')
| -rw-r--r-- | src/eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/eval.c b/src/eval.c index 4b2e256a722..02fc3426f83 100644 --- a/src/eval.c +++ b/src/eval.c | |||
| @@ -1273,7 +1273,7 @@ internal_lisp_condition_case (volatile Lisp_Object var, Lisp_Object bodyform, | |||
| 1273 | { /* The first clause is the one that should be checked first, so it should | 1273 | { /* The first clause is the one that should be checked first, so it should |
| 1274 | be added to handlerlist last. So we build in `clauses' a table that | 1274 | be added to handlerlist last. So we build in `clauses' a table that |
| 1275 | contains `handlers' but in reverse order. */ | 1275 | contains `handlers' but in reverse order. */ |
| 1276 | Lisp_Object *clauses = alloca (clausenb * sizeof (Lisp_Object *)); | 1276 | Lisp_Object *clauses = alloca (clausenb * sizeof *clauses); |
| 1277 | Lisp_Object *volatile clauses_volatile = clauses; | 1277 | Lisp_Object *volatile clauses_volatile = clauses; |
| 1278 | int i = clausenb; | 1278 | int i = clausenb; |
| 1279 | for (val = handlers; CONSP (val); val = XCDR (val)) | 1279 | for (val = handlers; CONSP (val); val = XCDR (val)) |