diff options
| author | Glenn Morris | 2008-06-13 08:08:20 +0000 |
|---|---|---|
| committer | Glenn Morris | 2008-06-13 08:08:20 +0000 |
| commit | d888760c951787ccc3a48d7f90bc798ee0996b9b (patch) | |
| tree | 1aabac1ac803d6d2e8614eef3dcf35874e5841de /src/ChangeLog | |
| parent | 07d99e7544ffa51339ae1ba1a3785f49247e0c6e (diff) | |
| download | emacs-d888760c951787ccc3a48d7f90bc798ee0996b9b.tar.gz emacs-d888760c951787ccc3a48d7f90bc798ee0996b9b.zip | |
Daniel Engeler <engeler at gmail.com>
These changes add serial port access.
* process.c: Add HAVE_SERIAL.
(Fdelete_process, Fprocess_status, Fset_process_buffer)
(Fset_process_filter, Fset_process_sentinel, Fprocess_contact)
(list_processes_1, select_wrapper, Fstop_process)
(Fcontinue_process, Fprocess_send_eof, kill_buffer_processes)
(status_notify): Modify to handle serial processes.
[HAVE_SERIAL] (Fserial_process_configure)
[HAVE_SERIAL] (make_serial_process_unwind, Fmake_serial_process):
New functions.
* process.h (struct Lisp_Process): Add `type'.
* sysdep.c [HAVE_TERMIOS] (serial_open, serial_configure):
New functions.
* w32.c (_sys_read_ahead, sys_read, sys_write): Modify to handle serial ports.
(serial_open, serial_configure) New functions.
* w32.h: Add FILE_SERIAL.
(struct _child_process): Add ovl_read, ovl_write.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index a648ca5cbbf..e575375e560 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,24 @@ | |||
| 1 | 2008-06-13 Daniel Engeler <engeler@gmail.com> | ||
| 2 | |||
| 3 | These changes add serial port access. | ||
| 4 | * process.c: Add HAVE_SERIAL. | ||
| 5 | (Fdelete_process, Fprocess_status, Fset_process_buffer) | ||
| 6 | (Fset_process_filter, Fset_process_sentinel, Fprocess_contact) | ||
| 7 | (list_processes_1, select_wrapper, Fstop_process) | ||
| 8 | (Fcontinue_process, Fprocess_send_eof, kill_buffer_processes) | ||
| 9 | (status_notify): Modify to handle serial processes. | ||
| 10 | [HAVE_SERIAL] (Fserial_process_configure) | ||
| 11 | [HAVE_SERIAL] (make_serial_process_unwind, Fmake_serial_process): | ||
| 12 | New functions. | ||
| 13 | * process.h (struct Lisp_Process): Add `type'. | ||
| 14 | * sysdep.c [HAVE_TERMIOS] (serial_open, serial_configure): | ||
| 15 | New functions. | ||
| 16 | * w32.c (_sys_read_ahead, sys_read, sys_write): Modify to handle | ||
| 17 | serial ports. | ||
| 18 | (serial_open, serial_configure) New functions. | ||
| 19 | * w32.h: Add FILE_SERIAL. | ||
| 20 | (struct _child_process): Add ovl_read, ovl_write. | ||
| 21 | |||
| 1 | 2008-06-13 Kenichi Handa <handa@m17n.org> | 22 | 2008-06-13 Kenichi Handa <handa@m17n.org> |
| 2 | 23 | ||
| 3 | * dispextern.h (enum lface_attribute_index): New member | 24 | * dispextern.h (enum lface_attribute_index): New member |