diff options
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/process.c b/src/process.c index ed5f4c0f07d..55f31a02673 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -957,7 +957,7 @@ DEFUN ("process-command", Fprocess_command, Sprocess_command, 1, 1, 0, | |||
| 957 | This is a list of strings, the first string being the program executed | 957 | This is a list of strings, the first string being the program executed |
| 958 | and the rest of the strings being the arguments given to it. | 958 | and the rest of the strings being the arguments given to it. |
| 959 | For a network or serial process, this is nil (process is running) or t | 959 | For a network or serial process, this is nil (process is running) or t |
| 960 | \(process is stopped). */) | 960 | (process is stopped). */) |
| 961 | (register Lisp_Object process) | 961 | (register Lisp_Object process) |
| 962 | { | 962 | { |
| 963 | CHECK_PROCESS (process); | 963 | CHECK_PROCESS (process); |
| @@ -2674,7 +2674,7 @@ is not given or nil, 1 stopbit is used. | |||
| 2674 | :flowcontrol FLOWCONTROL -- FLOWCONTROL determines the type of | 2674 | :flowcontrol FLOWCONTROL -- FLOWCONTROL determines the type of |
| 2675 | flowcontrol to be used, which is either nil (don't use flowcontrol), | 2675 | flowcontrol to be used, which is either nil (don't use flowcontrol), |
| 2676 | the symbol `hw' (use RTS/CTS hardware flowcontrol), or the symbol `sw' | 2676 | the symbol `hw' (use RTS/CTS hardware flowcontrol), or the symbol `sw' |
| 2677 | \(use XON/XOFF software flowcontrol). If FLOWCONTROL is not given, no | 2677 | (use XON/XOFF software flowcontrol). If FLOWCONTROL is not given, no |
| 2678 | flowcontrol is used. | 2678 | flowcontrol is used. |
| 2679 | 2679 | ||
| 2680 | `serial-process-configure' is called by `make-serial-process' for the | 2680 | `serial-process-configure' is called by `make-serial-process' for the |
| @@ -2682,12 +2682,12 @@ initial configuration of the serial port. | |||
| 2682 | 2682 | ||
| 2683 | Examples: | 2683 | Examples: |
| 2684 | 2684 | ||
| 2685 | \(serial-process-configure :process "/dev/ttyS0" :speed 1200) | 2685 | (serial-process-configure :process "/dev/ttyS0" :speed 1200) |
| 2686 | 2686 | ||
| 2687 | \(serial-process-configure | 2687 | (serial-process-configure |
| 2688 | :buffer "COM1" :stopbits 1 :parity \\='odd :flowcontrol \\='hw) | 2688 | :buffer "COM1" :stopbits 1 :parity \\='odd :flowcontrol \\='hw) |
| 2689 | 2689 | ||
| 2690 | \(serial-process-configure :port "\\\\.\\COM13" :bytesize 7) | 2690 | (serial-process-configure :port "\\\\.\\COM13" :bytesize 7) |
| 2691 | 2691 | ||
| 2692 | usage: (serial-process-configure &rest ARGS) */) | 2692 | usage: (serial-process-configure &rest ARGS) */) |
| 2693 | (ptrdiff_t nargs, Lisp_Object *args) | 2693 | (ptrdiff_t nargs, Lisp_Object *args) |
| @@ -2781,13 +2781,13 @@ is available via the function `process-contact'. | |||
| 2781 | 2781 | ||
| 2782 | Examples: | 2782 | Examples: |
| 2783 | 2783 | ||
| 2784 | \(make-serial-process :port "/dev/ttyS0" :speed 9600) | 2784 | (make-serial-process :port "/dev/ttyS0" :speed 9600) |
| 2785 | 2785 | ||
| 2786 | \(make-serial-process :port "COM1" :speed 115200 :stopbits 2) | 2786 | (make-serial-process :port "COM1" :speed 115200 :stopbits 2) |
| 2787 | 2787 | ||
| 2788 | \(make-serial-process :port "\\\\.\\COM13" :speed 1200 :bytesize 7 :parity \\='odd) | 2788 | (make-serial-process :port "\\\\.\\COM13" :speed 1200 :bytesize 7 :parity \\='odd) |
| 2789 | 2789 | ||
| 2790 | \(make-serial-process :port "/dev/tty.BlueConsole-SPP-1" :speed nil) | 2790 | (make-serial-process :port "/dev/tty.BlueConsole-SPP-1" :speed nil) |
| 2791 | 2791 | ||
| 2792 | usage: (make-serial-process &rest ARGS) */) | 2792 | usage: (make-serial-process &rest ARGS) */) |
| 2793 | (ptrdiff_t nargs, Lisp_Object *args) | 2793 | (ptrdiff_t nargs, Lisp_Object *args) |
| @@ -7296,7 +7296,7 @@ DEFUN ("process-attributes", Fprocess_attributes, | |||
| 7296 | 7296 | ||
| 7297 | Value is an alist where each element is a cons cell of the form | 7297 | Value is an alist where each element is a cons cell of the form |
| 7298 | 7298 | ||
| 7299 | \(KEY . VALUE) | 7299 | (KEY . VALUE) |
| 7300 | 7300 | ||
| 7301 | If this functionality is unsupported, the value is nil. | 7301 | If this functionality is unsupported, the value is nil. |
| 7302 | 7302 | ||