1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-04 08:47:11 +00:00
Commit Graph

130 Commits

Author SHA1 Message Date
Kim F. Storm
ca7cefe702 Fixed this redisplay bug:
** Problem with cursor border around images and window-margins:

The border around the image when the cursor is on the image
flows into the right fringe and margin.

     (progn
       (auto-image-file-mode 1)
       (find-file (concat data-directory "splash.xpm"))
       (set-window-margins (selected-window) 25 25))
2004-11-21 15:50:08 +00:00
Richard M. Stallman
8ec0cdb34b *** empty log message *** 2004-11-18 16:09:38 +00:00
Richard M. Stallman
71a539151a *** empty log message *** 2004-11-16 22:51:52 +00:00
Richard M. Stallman
ee31cd78ef *** empty log message *** 2004-11-16 17:31:19 +00:00
Kim F. Storm
3b8370e18b Add bug:
** Partial highlighting of wrapped overlay
2004-11-13 01:42:56 +00:00
Kim F. Storm
0e18f366ff Fixed these problems:
** Clicking on partially visible lines fails

From: David Kastrup <dak@gnu.org>
Date: 27 Apr 2004 16:42:58 +0200

I had gnus display a mouse-highlighted line (a URL from browse-url)
partially at the bottom of its window.  If I click with middle mouse
key on it, the window gets recentered while I hold the mouse key
pressed.  If I release it, the window returns into its old position
(cursor in top row) and nothing happens, presumably because the click
was not registered on the line itself, but on the magically
recentered version.

That is a nuisance.  Recentering of even partially visible click
targets should only happen if window-point moves there, but not at
the time of the click.  From the moment I hold down a key until it
gets released, the displayed window portion should not change, with
the sole exception of scrolling when dragging at the edge of the
screen.

(progn
  (setq line-spacing 4)
  (dotimes (i (window-height))
    (insert "\n" (int-to-string i)))
  (forward-line -2)
  (recenter -1))


** Can't drag modeline when mouse-autoselect-window is set

From: Klaus Zeitler <kzeitler@lucent.com>
Date: Mon, 11 Oct 2004 11:14:49 +0200

1. start emacs -q --no-site-file
2. set variable mouse-autoselect-window to t
3. split-window-vertically

now I can drag the modeline only upwards but not downwards
2004-11-13 01:40:36 +00:00
Kim F. Storm
41f41c62a6 Fixed this bug:
** line-spacing and (recenter -1)

From: SAITO Takuya <tabmore@rivo.mediatti.net>
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.
2004-11-12 14:29:24 +00:00
André Spiegel
06995bd786 Add a note about VC-over-Tramp. 2004-11-09 22:06:05 +00:00
Kim F. Storm
091cccb68d 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.
2004-11-08 23:52:54 +00:00
Kim F. Storm
ee960c0a97 Fixed bug:
** line-spacing and garbage in fringe

From: SAITO Takuya <tabmore@rivo.mediatti.net>
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'.
2004-11-08 23:37:16 +00:00
Kim F. Storm
00912e6c7d Fixed this bug:
** Mouse-face overlay bleeds into header line

From: Stephen Berman <Stephen.Berman@gmx.net>
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.
2004-11-08 22:30:00 +00:00
Richard M. Stallman
1efc19ebfa *** empty log message *** 2004-11-08 17:00:42 +00:00
Kim F. Storm
949b26bce2 *** empty log message *** 2004-11-02 13:49:38 +00:00
Jan Djärv
6b3d3397cc * FOR-RELEASE (Indications): Remove two stage update for toolbar (Done). 2004-11-02 10:45:34 +00:00
Kim F. Storm
e84fe274bc Add redisplay related errors. 2004-11-01 14:06:54 +00:00
Richard M. Stallman
2d1ef312c8 *** empty log message *** 2004-11-01 07:48:44 +00:00
Kim F. Storm
811120105c New display properties added to manuals. 2004-10-06 13:27:03 +00:00
Luc Teirlinck
9e9245cebd *** empty log message *** 2004-10-05 23:39:42 +00:00
Luc Teirlinck
6622d9280b *** empty log message *** 2004-09-21 01:11:31 +00:00
Luc Teirlinck
98b83a887e (Indications): Rearrange checklists for Emacs and Elisp manuals. 2004-09-21 00:16:25 +00:00
Richard M. Stallman
4d894c989e *** empty log message *** 2004-09-20 16:19:49 +00:00
Kim F. Storm
2d4a158aa2 Add DONE2 column for manual sections. 2004-09-19 16:25:53 +00:00
Luc Teirlinck
4bd65cb9ac *** empty log message *** 2004-09-18 20:27:40 +00:00
Luc Teirlinck
d574552a95 (Indications): Clean up and update checklists for Emacs and Elisp manual. 2004-09-18 20:22:35 +00:00
Kim F. Storm
7956ef44db (Documentation): Add NEWS entry.
Add section lists for proof-reading Emacs and Lisp manuals.
2004-09-11 18:38:40 +00:00
Kim F. Storm
10f5826de0 *** empty log message *** 2004-09-11 18:38:19 +00:00
Kim F. Storm
0a5e5be01b (New features): Remove Gnus 5.10 entry (Done!). 2004-09-11 18:15:00 +00:00
Kim F. Storm
2661eae951 *** empty log message *** 2004-08-29 20:55:46 +00:00
Kim F. Storm
cfb0cdc1fd Add ack.texi and AUTHORS. 2004-08-29 20:04:45 +00:00
Jan Djärv
1b6d517f29 * FOR-RELEASE (Indications): Removed entry about GTK and geometry,
(now behaves as well as other ports).
2004-08-28 07:45:42 +00:00
Kim F. Storm
bf77a4208b Add Gnus and face remapping entries. 2004-06-28 22:31:09 +00:00
Jan Djärv
dfab762fc9 * FOR-RELEASE: Removed entry about GTK and monochrome displays (done). 2004-06-28 14:40:42 +00:00
Kim F. Storm
c0a070c1c6 Use outline-mode. 2004-06-28 09:03:00 +00:00
Kim F. Storm
3d351c9753 *** empty log message *** 2004-06-28 08:57:38 +00:00
Eli Zaretskii
ad8a607d41 Moved FOR-RELEASE from etc/ to admin/. 2004-06-26 09:38:52 +00:00
Thien-Thi Nguyen
f87899ebd6 New entry re clamping to EXIT_FAILURE. 2004-05-12 14:39:34 +00:00
Thien-Thi Nguyen
41d8e8b29d Initial revision 2004-05-09 12:38:56 +00:00
Thien-Thi Nguyen
db2814522c Initial revision 2004-05-08 01:08:37 +00:00
Francesco Potortì
383c1c75ac Correct original attribution 2004-02-26 09:34:52 +00:00
Francesco Potortì
418b094bd5 The upload procedure that was described is no more valid after the
break-ins.

Need to describe how to upgrade AUTHORS using emacs-lisp/authors.el.
2003-10-24 12:19:56 +00:00
Miles Bader
feebeb72d3 Revision: miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-68
Portability fix for admin/quick-install-emacs

* admin/quick-install-emacs: Don't use "function" keyword when defining
shell functions.
2003-10-01 01:38:40 +00:00
Lute Kamstra
c098207242 Mention regenerating Emacs' AUTHORS file. 2003-09-29 10:08:11 +00:00
Miles Bader
e04e1ce238 Revision: miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-62
Tweaks to admin/quick-install-emacs

* quick-install-emacs: Remove fns-* pruning, since that file no
longer seems to be generated.
(AVOID): Quote literal periods.  Quote braces in a way acceptable
to all parties (gawk gets bitchy about using `\').
2003-09-27 23:08:14 +00:00
Miles Bader
7d39bf4c39 Revision: miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-45
Quote braces in regexp passed to egrep/awk
2003-09-15 05:37:06 +00:00
Miles Bader
ab5796a9f9 Add arch taglines 2003-09-01 15:45:59 +00:00
Miles Bader
6cce52e843 Revision: miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-19
Use quoting in quick-install-emacs that works with recent gawks
2003-08-19 16:22:27 +00:00
Miles Bader
8fc4819d1b Revision: emacs--cvs-trunk--0--patch-13
Archive: miles@gnu.org--gnu-2003
Creator: Miles Bader <miles@gnu.org>
Date: Thu Aug 14 17:50:57 JST 2003
Standard-date: 2003-08-14 08:50:57 GMT
Summary: Add arch-specific ignored files to quick-install-emacs
Modified-files: ./admin/quick-install-emacs
New-patches: miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-13

Add arch-specific ignored files to quick-install-emacs
2003-08-14 08:55:30 +00:00
Markus Rost
13582d5354 *** empty log message *** 2003-08-11 19:20:30 +00:00
Markus Rost
6d84ca3718 Remove obsolete workaround. 2003-08-11 19:19:57 +00:00
Andrew Innes
e53925a545 Update wording and version number etc.
Add extra instructions for installing multi-file .zip
distribution.
2003-04-22 12:12:07 +00:00