aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2004-12-07 05:01:55 +0000
committerStefan Monnier2004-12-07 05:01:55 +0000
commitd3a403e56c880a3a0992079ebe5f280a22d7dd68 (patch)
tree67787f98491074677037886da3238ac8ee681396
parent516eb29c738876d545c59d1c9b47a793ffd835cc (diff)
downloademacs-d3a403e56c880a3a0992079ebe5f280a22d7dd68.tar.gz
emacs-d3a403e56c880a3a0992079ebe5f280a22d7dd68.zip
*** empty log message ***
-rw-r--r--admin/FOR-RELEASE26
-rw-r--r--etc/NEWS3
-rw-r--r--etc/TODO16
-rw-r--r--lisp/ChangeLog13
4 files changed, 46 insertions, 12 deletions
diff --git a/admin/FOR-RELEASE b/admin/FOR-RELEASE
index 73e6d50df14..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
diff --git a/etc/NEWS b/etc/NEWS
index aedd81d5fa7..1faa6b74fc4 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -2581,6 +2581,9 @@ strings by giving that character a non-nil `cursor' text property.
2581around potentially blocking or long-running code in timers 2581around potentially blocking or long-running code in timers
2582and post-command-hooks. 2582and post-command-hooks.
2583 2583
2584** An unconditional face specification in defface (one where the DISPLAY part
2585is just t) applies to all cases and does not override subsequent entries.
2586
2584+++ 2587+++
2585** New face attribute `min-colors' can be used to tailor the face color 2588** New face attribute `min-colors' can be used to tailor the face color
2586to the number of colors supported by a display, and define the 2589to the number of colors supported by a display, and define the
diff --git a/etc/TODO b/etc/TODO
index e9bfbb01009..544e42694fc 100644
--- a/etc/TODO
+++ b/etc/TODO
@@ -9,7 +9,7 @@ to the FSF.
9 9
10* Small but important fixes needed in existing features: 10* Small but important fixes needed in existing features:
11 11
12** Fix the kill/yank treatment of invisible text. At the moment, 12** Fix the kill/yank treatment of invisible text. At the moment,
13 invisible text is placed in the kill-ring, so that the contents of 13 invisible text is placed in the kill-ring, so that the contents of
14 the ring may not correspond to the text as displayed to the user. It 14 the ring may not correspond to the text as displayed to the user. It
15 ought to be possible to omit text which is invisible (due to a 15 ought to be possible to omit text which is invisible (due to a
@@ -32,7 +32,8 @@ to the FSF.
32 properly with variable-pitch faces. 32 properly with variable-pitch faces.
33 33
34** Implement a smoother vertical scroll facility, one that allows 34** Implement a smoother vertical scroll facility, one that allows
35 C-v to scroll through a tall image. 35 C-v to scroll through a tall image. The primitive operations
36 posn-at-point and posn-at-x-y should now make it doable in elisp.
36 37
37** Implement intelligent search/replace, going beyond query-replace 38** Implement intelligent search/replace, going beyond query-replace
38 (see http://graphics.csail.mit.edu/~rcm/chi04.pdf). 39 (see http://graphics.csail.mit.edu/~rcm/chi04.pdf).
@@ -67,7 +68,6 @@ to the FSF.
67 68
68** ange-ftp 69** ange-ftp
69*** understand sftp 70*** understand sftp
70*** ignore some irrelevant errors (like IPv6 and kerberos thingies).
71*** Use MLS for ange-ftp-insert-directory if a list of files is specified. 71*** Use MLS for ange-ftp-insert-directory if a list of files is specified.
72 72
73** Ability to map a key, including all modified-combinations. 73** Ability to map a key, including all modified-combinations.
@@ -122,9 +122,6 @@ to the FSF.
122** Save undo information in special temporary files, and reload it 122** Save undo information in special temporary files, and reload it
123 when needed for undoing. This could extend undo capacity. 123 when needed for undoing. This could extend undo capacity.
124 124
125** Merge the Emacs regex.c with the Glibc regex.c.
126 They split off a few years ago through negligence.
127
128** Change the Windows NT menu code 125** Change the Windows NT menu code
129 so that it handles the deep_p argument and avoids 126 so that it handles the deep_p argument and avoids
130 regenerating the whole menu bar menu tree except 127 regenerating the whole menu bar menu tree except
@@ -318,6 +315,8 @@ to the FSF.
318 315
319* Internal changes 316* Internal changes
320 317
318** Replace Emacs's regex.c with the new DFA-based glibc regex code.
319
321** Replace gmalloc.c with the modified Doug Lea code from the current 320** Replace gmalloc.c with the modified Doug Lea code from the current
322 GNU libc so that the special mmapping of buffers can be removed -- 321 GNU libc so that the special mmapping of buffers can be removed --
323 that apparently loses under Solaris, at least. [fx has mostly done 322 that apparently loses under Solaris, at least. [fx has mostly done
@@ -327,7 +326,8 @@ to the FSF.
327 326
328** Add an inferior-comint-minor-mode to capture the common set of operations 327** Add an inferior-comint-minor-mode to capture the common set of operations
329 offered by major modes that offer an associated inferior 328 offered by major modes that offer an associated inferior
330 comint-derived mode. I.e. basically make cmuscheme.el generic. 329 comint-derived mode. I.e. basically make cmuscheme.el/inf-lisp.el generic.
331 For use by sml-mode, python-mode, tex-mode, scheme-mode, ... 330 For use by sml-mode, python-mode, tex-mode, scheme-mode, lisp-mode,
331 haskell-mode, tuareg-mode, ...
332 332
333;;; arch-tag: b0a3e40b-726a-457d-9999-ba848321b036 333;;; arch-tag: b0a3e40b-726a-457d-9999-ba848321b036
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 4188c0c4cb5..2e57be13739 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,13 +1,18 @@
12004-12-06 Stefan <monnier@iro.umontreal.ca>
2
3 * font-lock.el (font-lock-unfontify-region): Save buffer state.
4 (font-lock-default-unfontify-region): Dont' save buffer state any more.
5
12004-12-07 Jay Belanger <belanger@truman.edu> 62004-12-07 Jay Belanger <belanger@truman.edu>
2 7
3 * calc/calc-help.el (calc-describe-key): 8 * calc/calc-help.el (calc-describe-key):
4 Set calc-summary-indentation even when Calc Summary buffer exists. 9 Set calc-summary-indentation even when Calc Summary buffer exists.
5 10
62004-12-07 Glenn Morris <gmorris@ast.cam.ac.uk> 112004-12-07 Glenn Morris <gmorris@ast.cam.ac.uk>
7 12
8 * calendar/holidays.el (holiday-easter-etc): Make arguments 13 * calendar/holidays.el (holiday-easter-etc): Make arguments
9 optional for backwards compatability. Doc fix. Remove 14 optional for backwards compatability. Doc fix.
10 un-necessary local vars mandatory, output-list. 15 Remove un-necessary local vars mandatory, output-list.
11 (holiday-advent): Make arguments optional for backwards 16 (holiday-advent): Make arguments optional for backwards
12 compatability. Doc fix. 17 compatability. Doc fix.
13 18
@@ -41,7 +46,7 @@
412004-12-05 Sam Steingold <sds@gnu.org> 462004-12-05 Sam Steingold <sds@gnu.org>
42 47
43 * net/tramp.el (tramp-handle-file-accessible-directory-p): 48 * net/tramp.el (tramp-handle-file-accessible-directory-p):
44 Fix `tramp-time-diff' comparison logic 49 Fix `tramp-time-diff' comparison logic.
45 50
462004-12-05 Paul Pogonyshev <pogonyshev@gmx.net> 512004-12-05 Paul Pogonyshev <pogonyshev@gmx.net>
47 52