# HG changeset patch # User Glenn Morris # Date 1214456663 0 # Node ID 7d463685c286ecda26ab8e8bd1b9827ad5d08372 # Parent 5315a52c10d6df12d596c47e7702a29d118d33d4 Comment fixes. diff -r 5315a52c10d6 -r 7d463685c286 src/sysdep.c --- a/src/sysdep.c Thu Jun 26 05:02:04 2008 +0000 +++ b/src/sysdep.c Thu Jun 26 05:04:23 2008 +0000 @@ -5199,7 +5199,7 @@ 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 @@ 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 @@ 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