aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2000-11-20 16:51:24 +0000
committerGerd Moellmann2000-11-20 16:51:24 +0000
commitff9ab41497e05841639181129f4eebfefba8134d (patch)
treebae8af860efe10b80d85f2014712bc9ac23857c7
parent07b3d16e119d0bd1e25f3bf686d8633b9b08a3de (diff)
downloademacs-ff9ab41497e05841639181129f4eebfefba8134d.tar.gz
emacs-ff9ab41497e05841639181129f4eebfefba8134d.zip
*** empty log message ***
-rw-r--r--etc/ONEWS4
-rw-r--r--etc/ONEWS.22
-rw-r--r--etc/ONEWS.32
-rw-r--r--etc/ONEWS.42
-rw-r--r--lisp/ChangeLog5
-rw-r--r--src/ChangeLog11
6 files changed, 21 insertions, 5 deletions
diff --git a/etc/ONEWS b/etc/ONEWS
index 17909d0022c..c99afb60793 100644
--- a/etc/ONEWS
+++ b/etc/ONEWS
@@ -2,7 +2,7 @@ GNU Emacs NEWS -- history of user-visible changes. 1992.
2Copyright (C) 1995 Free Software Foundation, Inc. 2Copyright (C) 1995 Free Software Foundation, Inc.
3See the end for copying conditions. 3See the end for copying conditions.
4 4
5For older news, see the file NEWS.4. 5For older news, see the file ONEWS.4.
6 6
7* Editing Changes in Emacs 19.30. 7* Editing Changes in Emacs 19.30.
8 8
@@ -254,7 +254,7 @@ your working file with the latest version from the master.
254*** RCS customization. 254*** RCS customization.
255 255
256There is a new variable vc-consult-headers. If it is t (the default), 256There is a new variable vc-consult-headers. If it is t (the default),
257VC searches for RCS headers in working files (like `$Id: ONEWS,v 1.2 2000/08/17 15:19:41 gerd Exp $') and 257VC searches for RCS headers in working files (like `$Id: ONEWS,v 1.3 2000/11/02 13:34:50 gerd Exp $') and
258determines the state of the file from them, not from the master file. 258determines the state of the file from them, not from the master file.
259This is fast and more reliable when you use branches. (The variable 259This is fast and more reliable when you use branches. (The variable
260was already present in Emacs 19.29, but didn't get mentioned in the 260was already present in Emacs 19.29, but didn't get mentioned in the
diff --git a/etc/ONEWS.2 b/etc/ONEWS.2
index df85cfd3f93..f0b5dad0b01 100644
--- a/etc/ONEWS.2
+++ b/etc/ONEWS.2
@@ -2,7 +2,7 @@ GNU Emacs NEWS -- history of user-visible changes. 26-Mar-1986
2Copyright (C) 1986 Richard M. Stallman. 2Copyright (C) 1986 Richard M. Stallman.
3See the end for copying conditions. 3See the end for copying conditions.
4 4
5For older news, see the file NEWS.1. 5For older news, see the file ONEWS.1.
6 6
7Changes in Emacs 17 7Changes in Emacs 17
8 8
diff --git a/etc/ONEWS.3 b/etc/ONEWS.3
index b8c13f167fc..02d4cb9f3fa 100644
--- a/etc/ONEWS.3
+++ b/etc/ONEWS.3
@@ -2,7 +2,7 @@ GNU Emacs NEWS -- history of user-visible changes. 17-Aug-1988
2Copyright (C) 1988 Free Software Foundation, Inc. 2Copyright (C) 1988 Free Software Foundation, Inc.
3See the end for copying conditions. 3See the end for copying conditions.
4 4
5For older news, see the file NEWS.2. 5For older news, see the file ONEWS.2.
6 6
7Changes in version 18.52. 7Changes in version 18.52.
8 8
diff --git a/etc/ONEWS.4 b/etc/ONEWS.4
index 9c779c7a6ca..115e07ccd6c 100644
--- a/etc/ONEWS.4
+++ b/etc/ONEWS.4
@@ -2,7 +2,7 @@ GNU Emacs NEWS -- history of user-visible changes. 1992.
2Copyright (C) 1992 Free Software Foundation, Inc. 2Copyright (C) 1992 Free Software Foundation, Inc.
3See the end for copying conditions. 3See the end for copying conditions.
4 4
5For older news, see the file NEWS.3. 5For older news, see the file ONEWS.3.
6 6
7Changes in version 18.58. 7Changes in version 18.58.
8 8
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index a6924a19f26..929be257503 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12000-11-20 Gerd Moellmann <gerd@gnu.org>
2
3 * font-lock.el (java-keywords): Add MATCH-HIGHLIGHT part for
4 javadoc tags.
5
12000-11-20 Andre Spiegel <spiegel@gnu.org> 62000-11-20 Andre Spiegel <spiegel@gnu.org>
2 7
3 * vc.el, vc-hooks.el: Undo prev change (moved functions back to 8 * vc.el, vc-hooks.el: Undo prev change (moved functions back to
diff --git a/src/ChangeLog b/src/ChangeLog
index e5ac53e1da2..e80ec2afb28 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,14 @@
12000-11-20 Gerd Moellmann <gerd@gnu.org>
2
3 * xterm.c (scroll_bar_windows, scroll_bar_windows_size): New
4 variables.
5 (x_send_scroll_bar_event): Store the window in scroll_bar_windows
6 and store an index in the XClientMessageEvent. Storing a
7 Lisp_Object or pointer can fail on a 64 bit system, since X only
8 transfers 32 bits.
9 (x_scroll_bar_to_input_event): Get the window from
10 scroll_bar_windows.
11
12000-11-20 Dave Love <fx@gnu.org> 122000-11-20 Dave Love <fx@gnu.org>
2 13
3 * Makefile.in (LIBX): Reorder for -lX11 after -lXpm. 14 * Makefile.in (LIBX): Reorder for -lX11 after -lXpm.