aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.c
diff options
context:
space:
mode:
authorPaul Eggert2015-09-01 06:21:25 -0700
committerPaul Eggert2015-09-01 06:23:21 -0700
commita3c31adea4970b8a7fc7f495e6a6a6d4a93e69ce (patch)
tree03058460c897b868eaf281bcf984a3a687667ae3 /src/process.c
parent447e5890a81f098881aecc099852ace466ef5925 (diff)
downloademacs-a3c31adea4970b8a7fc7f495e6a6a6d4a93e69ce.tar.gz
emacs-a3c31adea4970b8a7fc7f495e6a6a6d4a93e69ce.zip
Docstring fixes re quotes in C code
Fix some docstring quoting problems, mostly by escaping apostrophe.
Diffstat (limited to 'src/process.c')
-rw-r--r--src/process.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/process.c b/src/process.c
index 17e9187aa65..1ab83780914 100644
--- a/src/process.c
+++ b/src/process.c
@@ -2685,7 +2685,7 @@ Examples:
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
@@ -2785,7 +2785,7 @@ Examples:
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