aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGlenn Morris2008-06-26 05:04:23 +0000
committerGlenn Morris2008-06-26 05:04:23 +0000
commit16bad4dd2eba4cc4ef82fd750e8e2775548e6b7b (patch)
treebaeb9a20461b79e4dd563589470067bd16b0a7ee /src
parent8da2243fe57179ed0d4e47f6afbffc828d5e0ce4 (diff)
downloademacs-16bad4dd2eba4cc4ef82fd750e8e2775548e6b7b.tar.gz
emacs-16bad4dd2eba4cc4ef82fd750e8e2775548e6b7b.zip
Comment fixes.
Diffstat (limited to 'src')
-rw-r--r--src/sysdep.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sysdep.c b/src/sysdep.c
index c2a7d1a0815..0023ea06bde 100644
--- a/src/sysdep.c
+++ b/src/sysdep.c
@@ -5199,7 +5199,7 @@ serial_configure (struct Lisp_Process *p,
5199 attr.c_cflag &= ~CSIZE; 5199 attr.c_cflag &= ~CSIZE;
5200 attr.c_cflag |= ((XINT (tem) == 7) ? CS7 : CS8); 5200 attr.c_cflag |= ((XINT (tem) == 7) ? CS7 : CS8);
5201#else 5201#else
5202 /* Don't error on bytesize 8, which should be set by cfmakeraw(). */ 5202 /* Don't error on bytesize 8, which should be set by cfmakeraw. */
5203 if (XINT (tem) != 8) 5203 if (XINT (tem) != 8)
5204 error ("Bytesize cannot be changed"); 5204 error ("Bytesize cannot be changed");
5205#endif 5205#endif
@@ -5232,7 +5232,7 @@ serial_configure (struct Lisp_Process *p,
5232 attr.c_iflag |= (IGNPAR | INPCK); 5232 attr.c_iflag |= (IGNPAR | INPCK);
5233 } 5233 }
5234#else 5234#else
5235 /* Don't error on no parity, which should be set by cfmakeraw(). */ 5235 /* Don't error on no parity, which should be set by cfmakeraw. */
5236 if (!NILP (tem)) 5236 if (!NILP (tem))
5237 error ("Parity cannot be configured"); 5237 error ("Parity cannot be configured");
5238#endif 5238#endif
@@ -5254,7 +5254,7 @@ serial_configure (struct Lisp_Process *p,
5254 if (XINT (tem) == 2) 5254 if (XINT (tem) == 2)
5255 attr.c_cflag |= CSTOPB; 5255 attr.c_cflag |= CSTOPB;
5256#else 5256#else
5257 /* Don't error on 1 stopbit, which should be set by cfmakeraw(). */ 5257 /* Don't error on 1 stopbit, which should be set by cfmakeraw. */
5258 if (XINT (tem) != 1) 5258 if (XINT (tem) != 1)
5259 error ("Stopbits cannot be configured"); 5259 error ("Stopbits cannot be configured");
5260#endif 5260#endif