aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index c201df19851..4b1bfc75187 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,35 @@
12013-10-03 Stefan Monnier <monnier@iro.umontreal.ca> 12013-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
2 2
3 * lisp.h (struct handler): Merge struct handler and struct catchtag.
4 (PUSH_HANDLER): New macro.
5 (catchlist): Remove.
6 (handlerlist): Always declare.
7
8 * eval.c (catchlist): Remove (merge with handlerlist).
9 (handlerlist, lisp_eval_depth): Not static any more.
10 (internal_catch, internal_condition_case, internal_condition_case_1)
11 (internal_condition_case_2, internal_condition_case_n):
12 Use PUSH_HANDLER.
13 (unwind_to_catch, Fthrow, Fsignal): Adjust to merged
14 handlerlist/catchlist.
15 (internal_lisp_condition_case): Use PUSH_HANDLER. Adjust to new
16 handlerlist which can only handle a single condition-case handler at
17 a time.
18 (find_handler_clause): Simplify since we only a single branch here
19 any more.
20
21 * bytecode.c (BYTE_CODES): Add Bpushcatch, Bpushconditioncase
22 and Bpophandler.
23 (bcall0): New function.
24 (exec_byte_code): Add corresponding cases. Improve error message when
25 encountering an invalid byte-code. Let Bunwind_protect accept
26 a function (rather than a list of expressions) as argument.
27
28 * alloc.c (Fgarbage_collect): Merge scans of handlerlist and catchlist,
29 and make them unconditional now that they're heap-allocated.
30
312013-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
32
3 * charset.c (Fdecode_char, Fencode_char): Remove description of 33 * charset.c (Fdecode_char, Fencode_char): Remove description of
4 `restriction' arg. now that it's hidden by advertised-calling-convention. 34 `restriction' arg. now that it's hidden by advertised-calling-convention.
5 35