Mercurial > emacs
comparison etc/NEWS @ 68011:0317e633f999
*** empty log message ***
author | Kim F. Storm <storm@cua.dk> |
---|---|
date | Wed, 04 Jan 2006 00:26:24 +0000 |
parents | 96503c1f5d7b |
children | 0c26a0aebc97 |
comparison
equal
deleted
inserted
replaced
68010:c4d411204127 | 68011:0317e633f999 |
---|---|
306 ** The max size of buffers and integers has been doubled. | 306 ** The max size of buffers and integers has been doubled. |
307 On 32bit machines, it is now 256M (i.e. 268435455). | 307 On 32bit machines, it is now 256M (i.e. 268435455). |
308 | 308 |
309 +++ | 309 +++ |
310 ** You can now switch buffers in a cyclic order with C-x C-left | 310 ** You can now switch buffers in a cyclic order with C-x C-left |
311 (previous-buffer) and C-x C-right (next-buffer). C-x left and | 311 (previous-buffer) and C-x C-right (next-buffer). C-x left and |
312 C-x right can be used as well. The functions keep a different buffer | 312 C-x right can be used as well. The functions keep a different buffer |
313 cycle for each frame, using the frame-local buffer list. | 313 cycle for each frame, using the frame-local buffer list. |
314 | 314 |
315 +++ | 315 +++ |
316 ** `undo-only' does an undo which does not redo any previous undo. | 316 ** `undo-only' does an undo which does not redo any previous undo. |
4424 | 4424 |
4425 - A server is started using :server t arg. | 4425 - A server is started using :server t arg. |
4426 - Datagram connection is selected using :type 'datagram arg. | 4426 - Datagram connection is selected using :type 'datagram arg. |
4427 - A server can open on a random port using :service t arg. | 4427 - A server can open on a random port using :service t arg. |
4428 - Local sockets are supported using :family 'local arg. | 4428 - Local sockets are supported using :family 'local arg. |
4429 - IPv6 is supported (when available). You may explicitly select IPv6 | |
4430 using :family 'ipv6 arg. | |
4429 - Non-blocking connect is supported using :nowait t arg. | 4431 - Non-blocking connect is supported using :nowait t arg. |
4430 - The process' property list can be initialized using :plist PLIST arg; | 4432 - The process' property list can be initialized using :plist PLIST arg; |
4431 a copy of the server process' property list is automatically inherited | 4433 a copy of the server process' property list is automatically inherited |
4432 by new client processes created to handle incoming connections. | 4434 by new client processes created to handle incoming connections. |
4433 | 4435 |
4434 To test for the availability of a given feature, use featurep like this: | 4436 To test for the availability of a given feature, use featurep like this: |
4435 (featurep 'make-network-process '(:type datagram)) | 4437 (featurep 'make-network-process '(:type datagram)) |
4438 (featurep 'make-network-process '(:family ipv6)) | |
4436 | 4439 |
4437 *** The old `open-network-stream' now uses `make-network-process'. | 4440 *** The old `open-network-stream' now uses `make-network-process'. |
4438 | 4441 |
4439 *** New functions `process-datagram-address', `set-process-datagram-address'. | 4442 *** New functions `process-datagram-address', `set-process-datagram-address'. |
4440 | 4443 |