changeset 1866:b91bb974985f

* doc/io.sgml: Match CYG_TTY_IN_FLAGS_ECHO and CYG_TTY_IN_FLAGS_BINARY values with source code.
author asl
date Wed, 05 Jan 2005 22:09:55 +0000
parents a9d4e3db838b
children a0d4c606e72d
files packages/io/common/current/ChangeLog packages/io/common/current/doc/io.sgml
diffstat 2 files changed, 14 insertions(+), 9 deletions(-) [+]
line wrap: on
line diff
--- a/packages/io/common/current/ChangeLog
+++ b/packages/io/common/current/ChangeLog
@@ -1,3 +1,8 @@
+2004-12-23  Peter Korsgaard  <jacmet@sunsite.dk>
+
+	* doc/io.sgml: Match CYG_TTY_IN_FLAGS_ECHO and
+	CYG_TTY_IN_FLAGS_BINARY values with source code.
+
 2004-09-21  Jonathan Larmour  <jifl@eCosCentric.com>
 
 	* doc/io.sgml: Rename incorrect cyg_drv_mutex to cyg_drv_mutex_t.
--- a/packages/io/common/current/doc/io.sgml
+++ b/packages/io/common/current/doc/io.sgml
@@ -870,21 +870,21 @@ character sequence &quot;\r\n&quot; (oft
 based terminals) will be mapped to &quot;\n&quot;. </PARA>
 
 <PROGRAMLISTING>
-#define CYG_TTY_IN_FLAGS_BINARY 0x0004 // No input processing
+#define CYG_TTY_IN_FLAGS_ECHO 0x0004 // Echo characters as processed
+</PROGRAMLISTING>
+
+<PARA>
+If this bit is set in <structfield>tty_in_flags</structfield>, characters
+will be echoed back to the serial port as they are processed. </PARA>
+
+<PROGRAMLISTING>
+#define CYG_TTY_IN_FLAGS_BINARY 0x0008 // No input processing
 </PROGRAMLISTING>
 
 <PARA>If this bit is set in <structfield>tty_in_flags</structfield>, the
 input will not be manipulated in any way before being placed in
 the user&rsquo;s buffer. </PARA>
 
-<PROGRAMLISTING>
-#define CYG_TTY_IN_FLAGS_ECHO 0x0008 // Echo characters as processed
-</PROGRAMLISTING>
-
-<PARA>
-If this bit is set in <structfield>tty_in_flags</structfield>, characters
-will be echoed back to the serial port as they are processed. </PARA>
-
 </SECTION>
 
 <!-- }}} -->