aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2002-03-18 04:44:05 +0000
committerRichard M. Stallman2002-03-18 04:44:05 +0000
commit6147334f2bdf8c8f7631718c26a1b75b906fe143 (patch)
tree39cbb938aca0df2ca5703bf276b4a6dc57a71d72
parent5fb96e963b12e3ced5ee9a2ee5477679b540295a (diff)
downloademacs-6147334f2bdf8c8f7631718c26a1b75b906fe143.tar.gz
emacs-6147334f2bdf8c8f7631718c26a1b75b906fe143.zip
*** empty log message ***
-rw-r--r--etc/TODO4
-rw-r--r--lisp/ChangeLog32
-rw-r--r--lwlib/ChangeLog4
-rw-r--r--src/ChangeLog17
4 files changed, 56 insertions, 1 deletions
diff --git a/etc/TODO b/etc/TODO
index bbc7fdbeee2..cb8c841863f 100644
--- a/etc/TODO
+++ b/etc/TODO
@@ -33,6 +33,8 @@ Important features:
33 33
34* Make movemail work with IMAP. 34* Make movemail work with IMAP.
35 35
36* Internationalize Emacs's messages.
37
36* Port Emacs to GTK+. (Relevant work has been done already.) 38* Port Emacs to GTK+. (Relevant work has been done already.)
37 39
38* Make the Lucid menu widget display multilingual text. 40* Make the Lucid menu widget display multilingual text.
@@ -117,7 +119,7 @@ Other features we would like:
117 119
118* Investigate using the language environment (or locale?) to set up 120* Investigate using the language environment (or locale?) to set up
119 more things, such as the default Ispell dictionary, calendar 121 more things, such as the default Ispell dictionary, calendar
120 holidays... 122 holidays, quoting characters?,...
121 123
122* Improve the GC (generational, incremental). (We may be able to use 124* Improve the GC (generational, incremental). (We may be able to use
123 the Boehm collector.) 125 the Boehm collector.)
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 8e517cc4fe1..6efe5003920 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,24 @@
12002-03-17 Richard M. Stallman <rms@gnu.org>
2
3 * emulation/pc-select.el (pc-selection-mode):
4 Alter the existing global map, don't replace it.
5
6 * files.el (list-directory): Set default-directory at the end.
7
8 * dabbrev.el (dabbrev--goto-start-of-abbrev):
9 Put a limit on field-beginning search.
10
112002-03-17 Simon Josefsson <jas@extundo.com>
12
13 * net/browse-url.el (browse-url-mosaic-pidfile): New variable.
14 (browse-url-mosaic): Use it.
15
16 * net/browse-url.el (browse-url-filename-alist): Don't begin
17 docstring with *, you don't want to set this one with M-x
18 set-variable.
19
20 * net/browse-url.el: Put * in user option doc strings.
21
12002-03-17 Stefan Monnier <monnier@cs.yale.edu> 222002-03-17 Stefan Monnier <monnier@cs.yale.edu>
2 23
3 * international/mule-diag.el (describe-char-after): 24 * international/mule-diag.el (describe-char-after):
@@ -34,6 +55,17 @@
34 (shadow-save-buffers-kill-emacs): Also check for active server 55 (shadow-save-buffers-kill-emacs): Also check for active server
35 processes. Use process-query-on-exit-flag. 56 processes. Use process-query-on-exit-flag.
36 57
582002-03-16 Simon Marshall <simon.marshall@misys.com>
59
60 * imenu.el (imenu-menubar-modified-tick): Renamed from
61 imenu-update-menubar-modified-tick.
62 (imenu-update-menubar): Update imenu-menubar-modified-tick
63 whenever outer condition succeeds.
64
65 * lazy-lock.el (save-buffer-state):
66 Bind inhibit-modification-hooks and buffer-file-truename
67 instead of before-change-functions and after-change-functions.
68
372002-03-16 Eli Zaretskii <eliz@is.elta.co.il> 692002-03-16 Eli Zaretskii <eliz@is.elta.co.il>
38 70
39 * international/codepage.el (codepage-setup): Don't define a 71 * international/codepage.el (codepage-setup): Don't define a
diff --git a/lwlib/ChangeLog b/lwlib/ChangeLog
index f3cbbe51454..3ef339001d8 100644
--- a/lwlib/ChangeLog
+++ b/lwlib/ChangeLog
@@ -1,3 +1,7 @@
12002-03-17 Richard M. Stallman <rms@gnu.org>
2
3 * lwlib.c (P_): Definitions deleted.
4
12002-03-16 Eli Zaretskii <eliz@is.elta.co.il> 52002-03-16 Eli Zaretskii <eliz@is.elta.co.il>
2 6
3 * lwlib.c (P_): Don't define if already defined. 7 * lwlib.c (P_): Don't define if already defined.
diff --git a/src/ChangeLog b/src/ChangeLog
index ba3bcd8224f..a92718f0b90 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,20 @@
12002-03-17 Richard M. Stallman <rms@gnu.org>
2
3 * xdisp.c (cursor_type_changed): New variable.
4 (redisplay_internal): Redisplay all windows if cursor_type_changed.
5 Clear it when clearing windows_or_buffers_changed.
6 (try_cursor_movement, redisplay_window, try_window_id)
7 (try_window_reusing_current_matrix): Test cursor_type_changed
8 along with windows_or_buffers_changed.
9
10 * window.h (cursor_type_changed): Hew variable.
11
12 * xfns.c (x_set_cursor_type): Set cursor_type_changed,
13 not update_mode_lines, and always set it to 1.
14
15 * xdisp.c (clear_garbaged_frames): Don't set windows_or_buffers_changed
16 if no frames needed redrawing.
17
12002-03-17 Kim F. Storm <storm@cua.dk> 182002-03-17 Kim F. Storm <storm@cua.dk>
2 19
3 The following changes adds support for network server processes, 20 The following changes adds support for network server processes,