aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorKaroly Lorentey2004-05-30 21:11:48 +0000
committerKaroly Lorentey2004-05-30 21:11:48 +0000
commita596810c6c3c3c2fd450717f5083a5ff5207d243 (patch)
treee84b4a480f6b5bdfb232a384c4c77472950be2a8 /src/ChangeLog
parent3de8a2533978f2e296b418a1ab0ae41deb00fa40 (diff)
parent9dd5e8d7c1e0cb26cc75f8cdf91eeaa170b48a6a (diff)
downloademacs-a596810c6c3c3c2fd450717f5083a5ff5207d243.tar.gz
emacs-a596810c6c3c3c2fd450717f5083a5ff5207d243.zip
Merged in changes from CVS trunk.
Patches applied: * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-344 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-345 Tweak source regexps so that building in place won't cause problems * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-346 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-347 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-348 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-349 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-350 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-351 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-352 Update from CVS: lisp/flymake.el: New file. git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-182
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog38
1 files changed, 35 insertions, 3 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index f15b1e582d9..df10f95e500 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,35 @@
12004-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * alloc.c: Undo Kim's recent changes and fix the same bug differently.
4 (marker_blocks_pending_free): Remove.
5 (Fgarbage_collect): Sweep after cleaning up undo-lists.
6 Mark the undo lists after claning them up.
7 Don't free block in marker_blocks_pending_free.
8 (mark_buffer): Don't mark undo_list.
9 (gc_sweep): Sweep hash-tables and strings first.
10 Do free marker blocks that are empty.
11
122004-05-28 Jim Blandy <jimb@redhat.com>
13
14 * regex.c (print_partial_compiled_pattern): Add missing 'break'
15 after 'case wordend'. For symbeg and symend, print to stderr,
16 like the other cases.
17
182004-05-28 Noah Friedman <friedman@splode.com>
19
20 * process.c (Fdelete_process): Do not call remove_process.
21
222004-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
23
24 * alloc.c (struct backtrace): Remove.
25 (Fgarbage_collect): Use the new mark_backtrace.
26
27 * eval.c (mark_backtrace): New function.
28
29 * minibuf.c (run_exit_minibuf_hook): New function.
30 (read_minibuf_unwind): Don't run exit-minibuffer-hook any more.
31 (read_minibuf): Use separate unwind handler to run exit-minibuf-hook.
32
12004-05-27 Kim F. Storm <storm@cua.dk> 332004-05-27 Kim F. Storm <storm@cua.dk>
2 34
3 * xdisp.c (back_to_previous_visible_line_start): Skip backwards 35 * xdisp.c (back_to_previous_visible_line_start): Skip backwards
@@ -15,8 +47,8 @@
15 47
162004-05-23 K,Ba(Broly L,Bu(Brentey <lorentey@elte.hu> (tiny change) 482004-05-23 K,Ba(Broly L,Bu(Brentey <lorentey@elte.hu> (tiny change)
17 49
18 * coding.c (Fset_safe_terminal_coding_system_internal): Set 50 * coding.c (Fset_safe_terminal_coding_system_internal):
19 suppress_error in safe_terminal_coding, not terminal_coding. 51 Set suppress_error in safe_terminal_coding, not terminal_coding.
20 52
212004-05-22 Richard M. Stallman <rms@gnu.org> 532004-05-22 Richard M. Stallman <rms@gnu.org>
22 54
@@ -71,7 +103,7 @@
71 (re_opcode_t): New opcodes `symbeg' and `symend'. 103 (re_opcode_t): New opcodes `symbeg' and `symend'.
72 (print_partial_compiled_pattern): Print the new opcodes properly. 104 (print_partial_compiled_pattern): Print the new opcodes properly.
73 (regex_compile): Parse the new operators. 105 (regex_compile): Parse the new operators.
74 (analyse_first): Skip symbeg and symend (they match only the empty string). 106 (analyse_first): Skip sym(beg|end) (they match only the empty string).
75 (mutually_exclusive_p): `symend' is mutually exclusive with \s_ and 107 (mutually_exclusive_p): `symend' is mutually exclusive with \s_ and
76 \sw; `symbeg' is mutually exclusive with \S_ and \Sw. 108 \sw; `symbeg' is mutually exclusive with \S_ and \Sw.
77 (re_match_2_internal): Match symbeg and symend. 109 (re_match_2_internal): Match symbeg and symend.