From: Glenn Morris Date: Thu, 26 Jun 2008 05:04:23 +0000 (+0000) Subject: Comment fixes. X-Git-Tag: emacs-pretest-23.0.90~4479 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=16bad4dd2eba4cc4ef82fd750e8e2775548e6b7b;p=emacs.git Comment fixes. --- 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