summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2002-03-18 04:44:05 +0000
committerRichard M. Stallman <rms@gnu.org>2002-03-18 04:44:05 +0000
commit1bd73ce32c7864002e67100f0449484c0fc59e28 (patch)
treeb41bc476f27a87f0708a30cd428e2bd9f8f34cbd
parentd5e5d155a1d3c242982646118b7fa1d570c388b0 (diff)
downloademacs-1bd73ce32c7864002e67100f0449484c0fc59e28.tar.gz
*** 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:
* Make movemail work with IMAP.
+* Internationalize Emacs's messages.
+
* Port Emacs to GTK+. (Relevant work has been done already.)
* Make the Lucid menu widget display multilingual text.
@@ -117,7 +119,7 @@ Other features we would like:
* Investigate using the language environment (or locale?) to set up
more things, such as the default Ispell dictionary, calendar
- holidays...
+ holidays, quoting characters?,...
* Improve the GC (generational, incremental). (We may be able to use
the Boehm collector.)
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 05e4604261f..67beabeb2a9 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,24 @@
+2002-03-17 Richard M. Stallman <rms@gnu.org>
+
+ * emulation/pc-select.el (pc-selection-mode):
+ Alter the existing global map, don't replace it.
+
+ * files.el (list-directory): Set default-directory at the end.
+
+ * dabbrev.el (dabbrev--goto-start-of-abbrev):
+ Put a limit on field-beginning search.
+
+2002-03-17 Simon Josefsson <jas@extundo.com>
+
+ * net/browse-url.el (browse-url-mosaic-pidfile): New variable.
+ (browse-url-mosaic): Use it.
+
+ * net/browse-url.el (browse-url-filename-alist): Don't begin
+ docstring with *, you don't want to set this one with M-x
+ set-variable.
+
+ * net/browse-url.el: Put * in user option doc strings.
+
2002-03-17 Stefan Monnier <monnier@cs.yale.edu>
* international/mule-diag.el (describe-char-after):
@@ -34,6 +55,17 @@
(shadow-save-buffers-kill-emacs): Also check for active server
processes. Use process-query-on-exit-flag.
+2002-03-16 Simon Marshall <simon.marshall@misys.com>
+
+ * imenu.el (imenu-menubar-modified-tick): Renamed from
+ imenu-update-menubar-modified-tick.
+ (imenu-update-menubar): Update imenu-menubar-modified-tick
+ whenever outer condition succeeds.
+
+ * lazy-lock.el (save-buffer-state):
+ Bind inhibit-modification-hooks and buffer-file-truename
+ instead of before-change-functions and after-change-functions.
+
2002-03-16 Eli Zaretskii <eliz@is.elta.co.il>
* 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 @@
+2002-03-17 Richard M. Stallman <rms@gnu.org>
+
+ * lwlib.c (P_): Definitions deleted.
+
2002-03-16 Eli Zaretskii <eliz@is.elta.co.il>
* 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 @@
+2002-03-17 Richard M. Stallman <rms@gnu.org>
+
+ * xdisp.c (cursor_type_changed): New variable.
+ (redisplay_internal): Redisplay all windows if cursor_type_changed.
+ Clear it when clearing windows_or_buffers_changed.
+ (try_cursor_movement, redisplay_window, try_window_id)
+ (try_window_reusing_current_matrix): Test cursor_type_changed
+ along with windows_or_buffers_changed.
+
+ * window.h (cursor_type_changed): Hew variable.
+
+ * xfns.c (x_set_cursor_type): Set cursor_type_changed,
+ not update_mode_lines, and always set it to 1.
+
+ * xdisp.c (clear_garbaged_frames): Don't set windows_or_buffers_changed
+ if no frames needed redrawing.
+
2002-03-17 Kim F. Storm <storm@cua.dk>
The following changes adds support for network server processes,