Mercurial > emacs
changeset 96309:7d463685c286
Comment fixes.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Thu, 26 Jun 2008 05:04:23 +0000 |
parents | 5315a52c10d6 |
children | ba295cada06b |
files | src/sysdep.c |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- 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