aboutsummaryrefslogtreecommitdiffstats
path: root/admin
diff options
context:
space:
mode:
authorMiles Bader2004-12-08 05:02:30 +0000
committerMiles Bader2004-12-08 05:02:30 +0000
commit000fc2b1fad05ccd9e6cdb5810febb091f4b5738 (patch)
tree808f1473847c7c44bc8b28d8edfa086ec25035d1 /admin
parent5bc63b073c3c75dbfab1f14423f01cc615e26eeb (diff)
parentad136a7c3b310fa7240dd2adf62f23b454782bd0 (diff)
downloademacs-000fc2b1fad05ccd9e6cdb5810febb091f4b5738.tar.gz
emacs-000fc2b1fad05ccd9e6cdb5810febb091f4b5738.zip
Revision: miles@gnu.org--gnu-2004/emacs--unicode--0--patch-74
Merge from emacs--cvs-trunk--0 Patches applied: * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-709 Update from CVS: src/indent.c (Fvertical_motion): Fix last change. * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-710 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-715 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-716 Merge from gnus--rel--5.10 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-74 Update from CVS
Diffstat (limited to 'admin')
-rw-r--r--admin/FOR-RELEASE54
1 files changed, 35 insertions, 19 deletions
diff --git a/admin/FOR-RELEASE b/admin/FOR-RELEASE
index 82589d95c77..ca0e16bdec9 100644
--- a/admin/FOR-RELEASE
+++ b/admin/FOR-RELEASE
@@ -36,6 +36,32 @@ invalid pointer from string_free_list.
36 36
37* BUGS 37* BUGS
38 38
39** Ange-ftp should ignore irrelevant IPv6 errors:
40
41Message-Id: <4121-Tue23Mar2004165249+0100-piet@cs.uu.nl>
42From: "Piet van Oostrum" <piet@cs.uu.nl>
43To: emacs-pretest-bug@gnu.org
44Subject: Ange-ftp can't deal with IPV6/IPV4 fallback
45
46Symptoms:
47
48C-x C-f /ftp.nluug.nl:/
49
50The problem is that the DNS first gives an IPV6 address. However our
51router doesn't do IPV6. Ftp then falls back to IPV4:
52
53ftp> open ftp.nluug.nl
54Trying 2001:610:1:80aa:192:87:102:36...
55ftp: connect to address 2001:610:1:80aa:192:87:102:36: No route to host
56Trying 192.87.102.36...
57Connected to ftp.nluug.nl.
58
59Ange-ftp chokes on the `No route to host' message and doesn't look any
60further.
61
62I think in the near future we will see more of this problem, so it might be
63time to make anfe-ftp more intelligent.
64
39** Mailabbrev should quote addresses to correspond to RFC 822. 65** Mailabbrev should quote addresses to correspond to RFC 822.
40See http://article.gmane.org/gmane.emacs.devel/27585 66See http://article.gmane.org/gmane.emacs.devel/27585
41 67
@@ -49,15 +75,15 @@ Date: Tue, 28 Sep 2004 16:13:13 +0100
49Fetching a url with url-retrieve can reult in an anrbitrary buffer 75Fetching a url with url-retrieve can reult in an anrbitrary buffer
50being killed if a 401 (or possibly a 407) result is encountered: 76being killed if a 401 (or possibly a 407) result is encountered:
51 77
52url-http-parse-headers calls url-http-handle-authentication, 78url-http-parse-headers calls url-http-handle-authentication,
53which can call url-retrieve. 79which can call url-retrieve.
54 80
55This results in the current buffer being killed, and a new http buffer 81This results in the current buffer being killed, and a new http buffer
56being generated. However, when the old http buffer is killed, emacs 82being 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 83picks 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 84time 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 85as 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 86url libraries reap their dead buffers, an innocent bystander buffer is
61killed instead (and an obsolete http buffer may be left lying around too). 87killed instead (and an obsolete http buffer may be left lying around too).
62 88
63A possible fix (which I am currently using) is to call set-buffer 89A possible fix (which I am currently using) is to call set-buffer
@@ -74,7 +100,7 @@ on the return value of url-http-parse-headers:
74 (set-buffer (url-http-handle-authentication nil))) 100 (set-buffer (url-http-handle-authentication nil)))
75etc .... 101etc ....
76 102
77which makes sure that it is the right http buffer that is current when 103which makes sure that it is the right http buffer that is current when
78we come to mark the http buffers as dead. 104we come to mark the http buffers as dead.
79 105
80 106
@@ -94,16 +120,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 120A fix would be to somehow disable handling of display properties if an error
95is encountered. 121is encountered.
96 122
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 123
108** Problem with modeline and window margins: 124** Problem with modeline and window margins:
109 125