diff options
| author | Kim F. Storm | 2002-03-21 12:37:23 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2002-03-21 12:37:23 +0000 |
| commit | 41ad623325a240ba0faac183205ba44a9d6783ab (patch) | |
| tree | 8a1bca362f6a1fb523208820d6ccaa96d47b59af /src | |
| parent | 557ba8b2d6e5f4685c084180d1379cc9fc2980ce (diff) | |
| download | emacs-41ad623325a240ba0faac183205ba44a9d6783ab.tar.gz emacs-41ad623325a240ba0faac183205ba44a9d6783ab.zip | |
Test for network process support with featurep.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index d215a29bd70..05a22d7e8ee 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,31 @@ | |||
| 1 | 2002-03-21 Kim F. Storm <storm@cua.dk> | ||
| 2 | |||
| 3 | * lisp.h (DEFUN) [USE_NONANSI_DEFUN]: The 2001-10-17 patch | ||
| 4 | removed the wrong version of the DEFUN macro; fixed it. | ||
| 5 | |||
| 6 | * fns.c (Ffeaturep): Allow subfeature to be a list (test using | ||
| 7 | Fmember rather than Fmemq). | ||
| 8 | (Fprovide): Check that subfeatures is a list. | ||
| 9 | |||
| 10 | * process.c (QCfeature, QCdatagram): Removed variables. | ||
| 11 | (QCtype, Qdatagram): New variables. | ||
| 12 | (network_process_featurep): Removed function. | ||
| 13 | (Fmake_network_process): Removed :feature check. | ||
| 14 | Use :type 'datagram instead of :datagram t to create a datagram | ||
| 15 | socket. This allows us to add other connection types (e.g. raw | ||
| 16 | sockets) later in a consistent manner. | ||
| 17 | (init_process) [subprocess]: Provide list of supported subfeatures | ||
| 18 | for feature make-network-process. | ||
| 19 | (syms_of_process) [subprocess]: Remove QCfeature and QCdatagram. | ||
| 20 | Intern and staticpro QCtype and Qdatagram. | ||
| 21 | (syms_of_process) [!subprocess]: Intern and staticpro QCtype. | ||
| 22 | |||
| 23 | * xfns.c: (QCtype): Remove duplicate declaration and | ||
| 24 | initialization (is now declared in process.c). | ||
| 25 | |||
| 26 | * w32fns.c: (QCtype): Remove duplicate declaration and | ||
| 27 | initialization (is now declared in process.c). | ||
| 28 | |||
| 1 | 2002-03-21 Richard M. Stallman <rms@gnu.org> | 29 | 2002-03-21 Richard M. Stallman <rms@gnu.org> |
| 2 | 30 | ||
| 3 | * regex.c (DISCARD_FAILURE_REG_OR_COUNT): New macro. | 31 | * regex.c (DISCARD_FAILURE_REG_OR_COUNT): New macro. |