emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/src/sysdep.c,v


From: Glenn Morris
Subject: [Emacs-diffs] Changes to emacs/src/sysdep.c,v
Date: Thu, 26 Jun 2008 05:04:23 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Glenn Morris <gm>       08/06/26 05:04:23

Index: sysdep.c
===================================================================
RCS file: /sources/emacs/emacs/src/sysdep.c,v
retrieving revision 1.303
retrieving revision 1.304
diff -u -b -r1.303 -r1.304
--- sysdep.c    26 Jun 2008 04:24:38 -0000      1.303
+++ sysdep.c    26 Jun 2008 05:04:23 -0000      1.304
@@ -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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]