From 1efc19ebfa52ff89bf07c2a8aebb92c4deef0a36 Mon Sep 17 00:00:00 2001 From: Richard M. Stallman Date: Mon, 8 Nov 2004 17:00:42 +0000 Subject: *** empty log message *** --- admin/FOR-RELEASE | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'admin') diff --git a/admin/FOR-RELEASE b/admin/FOR-RELEASE index e5e719f9037..99f78af4e25 100644 --- a/admin/FOR-RELEASE +++ b/admin/FOR-RELEASE @@ -10,6 +10,8 @@ Tasks needed before the next release. ** Let mouse-1 follow links. +** Make Rmail find the best version of movemail. +To be done by Sergey Poznyakoff . * FATAL ERRORS @@ -30,7 +32,6 @@ invalid pointer from string_free_list. ** Clean up flymake.el to follow Emacs Lisp conventions. - * GTK RELATED BUGS ** Make GTK scrollbars behave like others w.r.t. overscrolling. @@ -244,6 +245,8 @@ Electric-pop-up-window can use it. * DOCUMENTATION +** Document Custom Themes. + ** Finish updating the Emacs Lisp manual. ** Update the Emacs manual. @@ -318,11 +321,11 @@ names of the people who have checked it. SECTION READERS ---------------------------------- lispref/abbrevs.texi "Luc Teirlinck" -lispref/advice.texi +lispref/advice.texi Joakim Verona lispref/anti.texi lispref/backups.texi "Luc Teirlinck" lispref/buffers.texi "Luc Teirlinck" -lispref/calendar.texi +lispref/calendar.texi Joakim Verona lispref/commands.texi "Luc Teirlinck" lispref/compile.texi "Luc Teirlinck" lispref/control.texi "Luc Teirlinck" -- cgit v1.2.1 From 00912e6c7d7c6ce61063f7e0edc5d3c08167a19e Mon Sep 17 00:00:00 2001 From: Kim F. Storm Date: Mon, 8 Nov 2004 22:30:00 +0000 Subject: Fixed this bug: ** Mouse-face overlay bleeds into header line From: Stephen Berman Date: Thu, 21 Oct 2004 18:11:01 +0200 Mouse-face overlays bleed into the header line when the beginning of the overlay is above (point-min). To reproduce: 1. Start Emacs with -q -no-site-file. 2. In *scratch* eval (progn (setq ov (make-overlay 66 92)) (overlay-put ov 'mouse-face 'highlight) (setq header-line-format "test")) 3. Drag the mouse over the string "evaluation.\n;; If you want" and notice the highlighting of only this string. 4. Now click on the down arrow in the scroll bar until the line beginning ";; If you want" is directly below the header line. 5. Drag the mouse over ";; If you want" and notice that not only it but also the header line are highlighted. --- admin/FOR-RELEASE | 23 ----------------------- 1 file changed, 23 deletions(-) (limited to 'admin') diff --git a/admin/FOR-RELEASE b/admin/FOR-RELEASE index 99f78af4e25..02925b98085 100644 --- a/admin/FOR-RELEASE +++ b/admin/FOR-RELEASE @@ -104,29 +104,6 @@ interrupting I can get a backtrace, here's an example: Update: Maybe only reveals itself when compiled with GTK+ -** Mouse-face overlay bleeds into header line - -From: Stephen Berman -Date: Thu, 21 Oct 2004 18:11:01 +0200 - -Mouse-face overlays bleed into the header line when the beginning of -the overlay is above (point-min). To reproduce: - -1. Start Emacs with -q -no-site-file. - -2. In *scratch* eval (setq ov (make-overlay 66 92)), (overlay-put ov -'mouse-face 'highlight), and (setq header-line-format "test"). - -3. Drag the mouse over the string "evaluation.\n;; If you want" and -notice the highlighting of only this string. - -4. Now click on the down arrow in the scroll bar until the line -beginning ";; If you want" is directly below the header line. - -5. Drag the mouse over ";; If you want" and notice that not only it -but also the header line are highlighted. - - ** scroll-preserve-screen-position doesn't work with a header-line-format From: jbyler+emacs-lists@anon41.eml.cc -- cgit v1.2.1 From ee960c0a97cd295bc01a6fd01329b6252fdafd43 Mon Sep 17 00:00:00 2001 From: Kim F. Storm Date: Mon, 8 Nov 2004 23:37:16 +0000 Subject: Fixed bug: ** line-spacing and garbage in fringe From: SAITO Takuya Date: Mon, 31 May 2004 02:08:05 +0900 (JST) Start emacs -Q and evaluate below with C-xC-e: (let ((lines 2) (spacing 1)) (setq line-spacing spacing indicate-buffer-boundaries t) (insert (make-string (window-height) ?\n)) (goto-char (point-min)) (message (make-string (* (window-width) lines) ?.)) (scroll-up 1)) then, garbage is displayed in right fringe. Above code reproduces this bug with (frame-parameter nil 'font) => "-Adobe-Courier-Medium-R-Normal--12-120-75-75-M-70-ISO8859-1" If you use different font, you may need different value of `lines' and/or `spacing'. --- admin/FOR-RELEASE | 26 -------------------------- 1 file changed, 26 deletions(-) (limited to 'admin') diff --git a/admin/FOR-RELEASE b/admin/FOR-RELEASE index 02925b98085..977a17d688e 100644 --- a/admin/FOR-RELEASE +++ b/admin/FOR-RELEASE @@ -178,32 +178,6 @@ Then, point is displayed at the center of the window. But point should be displayed at the bottom of the window like Emacs-21.3. -** line-spacing and garbage in fringe - -From: SAITO Takuya -Date: Mon, 31 May 2004 02:08:05 +0900 (JST) - -Start emacs -Q and evaluate below with C-xC-e: - -(let ((lines 2) - (spacing 1)) - (setq line-spacing spacing - indicate-buffer-boundaries t) - (insert (make-string (window-height) ?\n)) - (goto-char (point-min)) - (message (make-string (* (window-width) lines) ?.)) - (scroll-up 1)) - -then, garbage is displayed in right fringe. - -Above code reproduces this bug with -(frame-parameter nil 'font) -=> "-Adobe-Courier-Medium-R-Normal--12-120-75-75-M-70-ISO8859-1" - -If you use different font, you may need different value of -`lines' and/or `spacing'. - - ** line-spacing and Electric-pop-up-window From: SAITO Takuya -- cgit v1.2.1 From 091cccb68df6033d9faf1be75c9b8389be2756b0 Mon Sep 17 00:00:00 2001 From: Kim F. Storm Date: Mon, 8 Nov 2004 23:52:54 +0000 Subject: This bug was fixed by RMS on 2004-11-02: ** scroll-preserve-screen-position doesn't work with a header-line-format From: jbyler+emacs-lists@anon41.eml.cc Date: Tue, 17 Aug 2004 17:10:14 -0400 There seems to be an off-by-one error triggered by using a header line together with scroll-preserve-screen-position. The symptom: instead of staying in the same position on the screen when scrolling, the cursor moves one screen line down each time the buffer is scrolled. Put another way: repeatedly typing C-v M-v or using a mouse scroll wheel to scroll up and down causes the cursor to migrate slowly down the screen instead of staying put as it should. To reproduce: emacs -q --no-site-file (setq scroll-preserve-screen-position t) (setq header-line-format "") C-v M-v C-v M-v C-v M-v etc. --- admin/FOR-RELEASE | 21 --------------------- 1 file changed, 21 deletions(-) (limited to 'admin') diff --git a/admin/FOR-RELEASE b/admin/FOR-RELEASE index 977a17d688e..a0cce628110 100644 --- a/admin/FOR-RELEASE +++ b/admin/FOR-RELEASE @@ -104,27 +104,6 @@ interrupting I can get a backtrace, here's an example: Update: Maybe only reveals itself when compiled with GTK+ -** scroll-preserve-screen-position doesn't work with a header-line-format - -From: jbyler+emacs-lists@anon41.eml.cc -Date: Tue, 17 Aug 2004 17:10:14 -0400 - -There seems to be an off-by-one error triggered by using a header line -together with scroll-preserve-screen-position. The symptom: instead of -staying in the same position on the screen when scrolling, the cursor -moves one screen line down each time the buffer is scrolled. Put -another way: repeatedly typing C-v M-v or using a mouse scroll wheel to -scroll up and down causes the cursor to migrate slowly down the screen -instead of staying put as it should. - -To reproduce: - -emacs -q --no-site-file -(setq scroll-preserve-screen-position t) -(setq header-line-format "") -C-v M-v C-v M-v C-v M-v etc. - - ** Clicking on partially visible lines fails From: David Kastrup -- cgit v1.2.1 From 06995bd786100e2be856896ab9f469245762220c Mon Sep 17 00:00:00 2001 From: André Spiegel Date: Tue, 9 Nov 2004 22:06:05 +0000 Subject: Add a note about VC-over-Tramp. --- admin/FOR-RELEASE | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'admin') diff --git a/admin/FOR-RELEASE b/admin/FOR-RELEASE index a0cce628110..a410f784b07 100644 --- a/admin/FOR-RELEASE +++ b/admin/FOR-RELEASE @@ -13,6 +13,10 @@ Tasks needed before the next release. ** Make Rmail find the best version of movemail. To be done by Sergey Poznyakoff . +** Make VC-over-Tramp work where possible, or at least fail +gracefully if something isn't supported over Tramp. +To be done by Andre Spiegel . + * FATAL ERRORS ** Investigate face cache related crash. -- cgit v1.2.1 From 41f41c62a6010e5ff514ee4431731af0c417df10 Mon Sep 17 00:00:00 2001 From: Kim F. Storm Date: Fri, 12 Nov 2004 14:29:24 +0000 Subject: Fixed this bug: ** line-spacing and (recenter -1) From: SAITO Takuya Date: Mon, 31 May 2004 02:07:57 +0900 (JST) (recenter -1) does not show point at the bottom of the window if line-spacing is set to positive integer. Start emacs -Q, and evaluate below: (progn (setq line-spacing 1) (dotimes (i (window-height)) (insert "\n" (int-to-string i))) (recenter -1)) Then, point is displayed at the center of the window. But point should be displayed at the bottom of the window like Emacs-21.3. --- admin/FOR-RELEASE | 20 -------------------- 1 file changed, 20 deletions(-) (limited to 'admin') diff --git a/admin/FOR-RELEASE b/admin/FOR-RELEASE index a410f784b07..8e660744370 100644 --- a/admin/FOR-RELEASE +++ b/admin/FOR-RELEASE @@ -141,26 +141,6 @@ Date: Mon, 11 Oct 2004 11:14:49 +0200 now I can drag the modeline only upwards but not downwards -** line-spacing and (recenter -1) - -From: SAITO Takuya -Date: Mon, 31 May 2004 02:07:57 +0900 (JST) - -(recenter -1) does not show point at the bottom of the window -if line-spacing is set to positive integer. - -Start emacs -Q, and evaluate below: - -(progn - (setq line-spacing 1) - (dotimes (i (window-height)) - (insert "\n" (int-to-string i))) - (recenter -1)) - -Then, point is displayed at the center of the window. -But point should be displayed at the bottom of the window like Emacs-21.3. - - ** line-spacing and Electric-pop-up-window From: SAITO Takuya -- cgit v1.2.1