This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.23-564-g2b6dbe6


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  2b6dbe669fa2e488b31286150e8cb6f7c0875847 (commit)
      from  2ac88eecc57ff00e0b5ff803ebcc3465d2d640dd (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=2b6dbe669fa2e488b31286150e8cb6f7c0875847

commit 2b6dbe669fa2e488b31286150e8cb6f7c0875847
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date:   Wed Jul 13 22:41:40 2016 +0200

    Fix TABDLY value
    
    	* bits/termios.h (TABDLY): Change macro to include TAB3 bit too.

diff --git a/ChangeLog b/ChangeLog
index 4bc8a61..234a3cc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2016-07-13  Samuel Thibault  <samuel.thibault@ens-lyon.org>
+
+	* bits/termios.h (TABDLY): Change macro to include TAB3 bit too.
+
 2016-07-13  Adhemerval Zanella  <adhemerval.zanella@linaro.org>
 
 	[BZ #15368]
diff --git a/bits/termios.h b/bits/termios.h
index f28b492..c1b1a99 100644
--- a/bits/termios.h
+++ b/bits/termios.h
@@ -152,7 +152,7 @@ struct termios
 # define NLDLY	(3 << 8)	/* NL delay.  */
 # define NL0	(0 << 8)	/* NL type 0.  */
 # define NL1	(1 << 8)	/* NL type 1.  */
-# define TABDLY	(3 << 10)	/* TAB delay.  */
+# define TABDLY	(3 << 10 | 1 << 2)	/* TAB delay.  */
 # define TAB0	(0 << 10)	/* TAB delay type 0.  */
 # define TAB1	(1 << 10)	/* TAB delay type 1.  */
 # define TAB2	(2 << 10)	/* TAB delay type 2.  */

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog      |    4 ++++
 bits/termios.h |    2 +-
 2 files changed, 5 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]