aboutsummaryrefslogtreecommitdiffstats
path: root/admin
diff options
context:
space:
mode:
authorMiles Bader2006-02-22 06:54:10 +0000
committerMiles Bader2006-02-22 06:54:10 +0000
commitb434f199dbbc2694a69538ee95e5e583f6357f71 (patch)
treeea87d2540063659d9cfdb24462bb4c0336a6ec47 /admin
parent9d826e0eaf8a4e2f1cf5aac74d6b02ccc393af8d (diff)
parenta1b24e137f75b9f5fdbd5526947a70c462c5e5bf (diff)
downloademacs-b434f199dbbc2694a69538ee95e5e583f6357f71.tar.gz
emacs-b434f199dbbc2694a69538ee95e5e583f6357f71.zip
Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-21
Merge from emacs--devo--0 Patches applied: * emacs--devo--0 (patch 97-112) - Update from CVS - Merge from erc--emacs--0 - Update from CVS: src/regex.c (extend_range_table_work_area): Fix typo. - Merge from gnus--rel--5.10 * gnus--rel--5.10 (patch 37) - Update from CVS
Diffstat (limited to 'admin')
-rw-r--r--admin/ChangeLog10
-rw-r--r--admin/FOR-RELEASE23
2 files changed, 25 insertions, 8 deletions
diff --git a/admin/ChangeLog b/admin/ChangeLog
index 1b855f7c4ed..1543c17d3a6 100644
--- a/admin/ChangeLog
+++ b/admin/ChangeLog
@@ -1,3 +1,13 @@
12006-02-20 Kim F. Storm <storm@cua.dk>
2
3 * FOR-RELEASE (NEW FEATURES): Completed work on this item:
4 Rework how fringe bitmaps are defined and used.
5 Currently, bitmap usage and bitmap appearence are "mixed-up" in a
6 one-level representation. It would be cleaner to split the
7 representation into a two-level model where first level maps
8 bitmap usage to a bitmap name, and second level maps bitmap name to
9 a bitmap appearence.
10
12006-01-27 Chong Yidong <cyd@stupidchicken.com> 112006-01-27 Chong Yidong <cyd@stupidchicken.com>
2 12
3 * FOR-RELEASE: string allocation bugs fixed. 13 * FOR-RELEASE: string allocation bugs fixed.
diff --git a/admin/FOR-RELEASE b/admin/FOR-RELEASE
index ab17c84eab9..ef73ec4436e 100644
--- a/admin/FOR-RELEASE
+++ b/admin/FOR-RELEASE
@@ -33,16 +33,14 @@ Assigned to Bill Wohler <wohler@newt.com>.
33 33
34* NEW FEATURES 34* NEW FEATURES
35 35
36** Rework how fringe bitmaps are defined and used.
37Currently, bitmap usage and bitmap appearence are "mixed-up" in a
38one-level representation. It would be cleaner to split the
39representation into a two-level model where first level maps
40bitmap usage to a bitmap name, and second level maps bitmap name to
41a bitmap appearence.
42[Assigned to KFS]
43
44* BUGS 36* BUGS
45 37
38** Reiner Steib's 23 Jan 2006 bug report that tool bar icons don't update.
39
40** Ralf Angeli's 4 Jul 2005 bug report about scroll-preserve-screen-position.
41
42** Martin Rudalics' 30 Jan 2006 bug report about overlays at end of buffer.
43
46** TCP server processes do not work on Windows. 44** TCP server processes do not work on Windows.
47 45
48TCP/IP server processes created with `make-network-process' consume 46TCP/IP server processes created with `make-network-process' consume
@@ -50,6 +48,15 @@ excesive CPU on some Windows environments. Usages of 50% and 100%
50CPU time have been observed on different Window XP configurations. 48CPU time have been observed on different Window XP configurations.
51Seems to be a problem in sys_select in w32proc.c. 49Seems to be a problem in sys_select in w32proc.c.
52 50
51In its current form, it sys_select says the socket is ready, so we
52call server_accept_connection which again calls accept() which returns
53-1 with errno == WSAEWOULDBLOCK (10035) indicating that there is no
54pending connection to accept.
55
56It seems that to fix this, w32 server sockets must use WSAAsyncSelect
57+ FD_ACCEPT to request notifications of incoming connections...
58
59
53* DOCUMENTATION 60* DOCUMENTATION
54 61
55** Add a node to the Lisp manual describing key sequences from the 62** Add a node to the Lisp manual describing key sequences from the