aboutsummaryrefslogtreecommitdiffstats
path: root/admin
diff options
context:
space:
mode:
authorKim F. Storm2004-11-21 15:50:08 +0000
committerKim F. Storm2004-11-21 15:50:08 +0000
commitca7cefe702f23b3a6197965479f7b47ec3566c9e (patch)
treea05ca231519241b652ba88526b5af05b18b59099 /admin
parent08f6668226c6c70e63c63e8962785dfe86cba70d (diff)
downloademacs-ca7cefe702f23b3a6197965479f7b47ec3566c9e.tar.gz
emacs-ca7cefe702f23b3a6197965479f7b47ec3566c9e.zip
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))
Diffstat (limited to 'admin')
-rw-r--r--admin/FOR-RELEASE30
1 files changed, 10 insertions, 20 deletions
diff --git a/admin/FOR-RELEASE b/admin/FOR-RELEASE
index 82589d95c77..73e6d50df14 100644
--- a/admin/FOR-RELEASE
+++ b/admin/FOR-RELEASE
@@ -49,15 +49,15 @@ Date: Tue, 28 Sep 2004 16:13:13 +0100
49Fetching a url with url-retrieve can reult in an anrbitrary buffer 49Fetching a url with url-retrieve can reult in an anrbitrary buffer
50being killed if a 401 (or possibly a 407) result is encountered: 50being killed if a 401 (or possibly a 407) result is encountered:
51 51
52url-http-parse-headers calls url-http-handle-authentication, 52url-http-parse-headers calls url-http-handle-authentication,
53which can call url-retrieve. 53which can call url-retrieve.
54 54
55This results in the current buffer being killed, and a new http buffer 55This results in the current buffer being killed, and a new http buffer
56being generated. However, when the old http buffer is killed, emacs 56being generated. However, when the old http buffer is killed, emacs
57picks the top buffer from the list as the new current buffer, so by the 57picks the top buffer from the list as the new current buffer, so by the
58time we get to the end of url-http-parse-headers, _that_ buffer is marked 58time we get to the end of url-http-parse-headers, _that_ buffer is marked
59as dead even though it is not necessarily a url buffer, so next time the 59as dead even though it is not necessarily a url buffer, so next time the
60url libraries reap their dead buffers, an innocent bystander buffer is 60url libraries reap their dead buffers, an innocent bystander buffer is
61killed instead (and an obsolete http buffer may be left lying around too). 61killed instead (and an obsolete http buffer may be left lying around too).
62 62
63A possible fix (which I am currently using) is to call set-buffer 63A possible fix (which I am currently using) is to call set-buffer
@@ -74,7 +74,7 @@ on the return value of url-http-parse-headers:
74 (set-buffer (url-http-handle-authentication nil))) 74 (set-buffer (url-http-handle-authentication nil)))
75etc .... 75etc ....
76 76
77which makes sure that it is the right http buffer that is current when 77which makes sure that it is the right http buffer that is current when
78we come to mark the http buffers as dead. 78we come to mark the http buffers as dead.
79 79
80 80
@@ -94,16 +94,6 @@ Redisplay may loop if there is an error in some display property, e.g.
94A fix would be to somehow disable handling of display properties if an error 94A fix would be to somehow disable handling of display properties if an error
95is encountered. 95is encountered.
96 96
97** Problem with cursor border around images and window-margins:
98
99The border around the image when the cursor is on the image
100flows into the right fringe and margin.
101
102 (progn
103 (auto-image-file-mode 1)
104 (find-file (concat data-directory "splash.xpm"))
105 (set-window-margins (selected-window) 25 25))
106
107 97
108** Problem with modeline and window margins: 98** Problem with modeline and window margins:
109 99