From 16bad4dd2eba4cc4ef82fd750e8e2775548e6b7b Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Thu, 26 Jun 2008 05:04:23 +0000 Subject: [PATCH] Comment fixes. --- src/sysdep.c | 6 +++--- 1 file 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, attr.c_cflag &= ~CSIZE; attr.c_cflag |= ((XINT (tem) == 7) ? CS7 : CS8); #else - /* Don't error on bytesize 8, which should be set by cfmakeraw(). */ + /* Don't error on bytesize 8, which should be set by cfmakeraw. */ if (XINT (tem) != 8) error ("Bytesize cannot be changed"); #endif @@ -5232,7 +5232,7 @@ serial_configure (struct Lisp_Process *p, attr.c_iflag |= (IGNPAR | INPCK); } #else - /* Don't error on no parity, which should be set by cfmakeraw(). */ + /* Don't error on no parity, which should be set by cfmakeraw. */ if (!NILP (tem)) error ("Parity cannot be configured"); #endif @@ -5254,7 +5254,7 @@ serial_configure (struct Lisp_Process *p, if (XINT (tem) == 2) attr.c_cflag |= CSTOPB; #else - /* Don't error on 1 stopbit, which should be set by cfmakeraw(). */ + /* Don't error on 1 stopbit, which should be set by cfmakeraw. */ if (XINT (tem) != 1) error ("Stopbits cannot be configured"); #endif -- 2.39.2