aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/process.c')
-rw-r--r--src/process.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/process.c b/src/process.c
index 56f036cd7d2..a518c2bffb8 100644
--- a/src/process.c
+++ b/src/process.c
@@ -7,8 +7,8 @@ This file is part of GNU Emacs.
7 7
8GNU Emacs is free software: you can redistribute it and/or modify 8GNU Emacs is free software: you can redistribute it and/or modify
9it under the terms of the GNU General Public License as published by 9it under the terms of the GNU General Public License as published by
10the Free Software Foundation, either version 3 of the License, or 10the Free Software Foundation, either version 3 of the License, or (at
11(at your option) any later version. 11your option) any later version.
12 12
13GNU Emacs is distributed in the hope that it will be useful, 13GNU Emacs is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of 14but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -982,7 +982,7 @@ DEFUN ("process-command", Fprocess_command, Sprocess_command, 1, 1, 0,
982This is a list of strings, the first string being the program executed 982This is a list of strings, the first string being the program executed
983and the rest of the strings being the arguments given to it. 983and the rest of the strings being the arguments given to it.
984For a network or serial process, this is nil (process is running) or t 984For a network or serial process, this is nil (process is running) or t
985(process is stopped). */) 985\(process is stopped). */)
986 (register Lisp_Object process) 986 (register Lisp_Object process)
987{ 987{
988 CHECK_PROCESS (process); 988 CHECK_PROCESS (process);
@@ -2726,7 +2726,7 @@ is not given or nil, 1 stopbit is used.
2726:flowcontrol FLOWCONTROL -- FLOWCONTROL determines the type of 2726:flowcontrol FLOWCONTROL -- FLOWCONTROL determines the type of
2727flowcontrol to be used, which is either nil (don't use flowcontrol), 2727flowcontrol to be used, which is either nil (don't use flowcontrol),
2728the symbol `hw' (use RTS/CTS hardware flowcontrol), or the symbol `sw' 2728the symbol `hw' (use RTS/CTS hardware flowcontrol), or the symbol `sw'
2729(use XON/XOFF software flowcontrol). If FLOWCONTROL is not given, no 2729\(use XON/XOFF software flowcontrol). If FLOWCONTROL is not given, no
2730flowcontrol is used. 2730flowcontrol is used.
2731 2731
2732`serial-process-configure' is called by `make-serial-process' for the 2732`serial-process-configure' is called by `make-serial-process' for the
@@ -2734,12 +2734,12 @@ initial configuration of the serial port.
2734 2734
2735Examples: 2735Examples:
2736 2736
2737(serial-process-configure :process "/dev/ttyS0" :speed 1200) 2737\(serial-process-configure :process "/dev/ttyS0" :speed 1200)
2738 2738
2739(serial-process-configure 2739\(serial-process-configure
2740 :buffer "COM1" :stopbits 1 :parity \\='odd :flowcontrol \\='hw) 2740 :buffer "COM1" :stopbits 1 :parity \\='odd :flowcontrol \\='hw)
2741 2741
2742(serial-process-configure :port "\\\\.\\COM13" :bytesize 7) 2742\(serial-process-configure :port "\\\\.\\COM13" :bytesize 7)
2743 2743
2744usage: (serial-process-configure &rest ARGS) */) 2744usage: (serial-process-configure &rest ARGS) */)
2745 (ptrdiff_t nargs, Lisp_Object *args) 2745 (ptrdiff_t nargs, Lisp_Object *args)
@@ -2833,13 +2833,13 @@ is available via the function `process-contact'.
2833 2833
2834Examples: 2834Examples:
2835 2835
2836(make-serial-process :port "/dev/ttyS0" :speed 9600) 2836\(make-serial-process :port "/dev/ttyS0" :speed 9600)
2837 2837
2838(make-serial-process :port "COM1" :speed 115200 :stopbits 2) 2838\(make-serial-process :port "COM1" :speed 115200 :stopbits 2)
2839 2839
2840(make-serial-process :port "\\\\.\\COM13" :speed 1200 :bytesize 7 :parity \\='odd) 2840\(make-serial-process :port "\\\\.\\COM13" :speed 1200 :bytesize 7 :parity \\='odd)
2841 2841
2842(make-serial-process :port "/dev/tty.BlueConsole-SPP-1" :speed nil) 2842\(make-serial-process :port "/dev/tty.BlueConsole-SPP-1" :speed nil)
2843 2843
2844usage: (make-serial-process &rest ARGS) */) 2844usage: (make-serial-process &rest ARGS) */)
2845 (ptrdiff_t nargs, Lisp_Object *args) 2845 (ptrdiff_t nargs, Lisp_Object *args)