diff options
| author | John Wiegley | 2016-02-15 14:11:03 -0800 |
|---|---|---|
| committer | John Wiegley | 2016-02-15 14:11:03 -0800 |
| commit | 220613e089ec012ae4ab319637365132ce8dc306 (patch) | |
| tree | 715595598dfd3d80ba7c4306a0ea8f010b320db4 /src/eval.c | |
| parent | ca03b85b9c1b8908f2651eaf594780c7b5217f61 (diff) | |
| parent | d4b93e11a519cf71beca69654fda158d01a26c3b (diff) | |
| download | emacs-220613e089ec012ae4ab319637365132ce8dc306.tar.gz emacs-220613e089ec012ae4ab319637365132ce8dc306.zip | |
Merge from origin/emacs-25
d4b93e1 Minor fixes in global-auto-composition-mode
02b037b Allow arithmetic operators inside C++ template constructs.
44b16f6 Avoid crashes in semi-malformed 'condition-case'
652e5b4 Allow arithmetic operators inside C++ template constructs.
d9ea795 Fix regression with 'recent-keys' and keyboard macros
903603f Fix wording in a doc-view.el comment
cf79616 ; Spelling fixes
f8bf1b3 CONTRIBUTE cleanups and updates
f3aaca3 Port USE_STACK_LISP_OBJECTS fix to Clang
1834ac7 Port to x86 GCC 4.3.1 and earlier
8482949 Fix point movement under 'scroll-conservatively'
c1313b5 Replace colon in file name (not legal on Windows)
f7af26c Fix a typo in edt.texi
8badf95 Make 'mmap_realloc' on MS-Windows more reliable
856cd94 Grep alias `all' shall not match parent directory
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 6c912bc4762..26104a58277 100644 --- a/src/eval.c +++ b/src/eval.c | |||
| @@ -1245,7 +1245,7 @@ internal_lisp_condition_case (volatile Lisp_Object var, Lisp_Object bodyform, | |||
| 1245 | for (i = 0; i < clausenb; i++) | 1245 | for (i = 0; i < clausenb; i++) |
| 1246 | { | 1246 | { |
| 1247 | Lisp_Object clause = clauses[i]; | 1247 | Lisp_Object clause = clauses[i]; |
| 1248 | Lisp_Object condition = XCAR (clause); | 1248 | Lisp_Object condition = CONSP (clause) ? XCAR (clause) : Qnil; |
| 1249 | if (!CONSP (condition)) | 1249 | if (!CONSP (condition)) |
| 1250 | condition = Fcons (condition, Qnil); | 1250 | condition = Fcons (condition, Qnil); |
| 1251 | struct handler *c = push_handler (condition, CONDITION_CASE); | 1251 | struct handler *c = push_handler (condition, CONDITION_CASE); |