chiark / gitweb /
terminal: fix TERM_FLAG_* comment
authorDavid Herrmann <dh.herrmann@gmail.com>
Sun, 5 Oct 2014 12:45:33 +0000 (14:45 +0200)
committerDavid Herrmann <dh.herrmann@gmail.com>
Sun, 5 Oct 2014 12:45:33 +0000 (14:45 +0200)
7BIT mode is enabled by default. Fix the comment to state this correctly.

src/libsystemd-terminal/term-internal.h

index f0f4432c800380a694bf0e52c8d8b06769b03957..a023498b5321f875bfd516fb9129062990654930 100644 (file)
@@ -582,7 +582,7 @@ struct term_parser {
  */
 
 enum {
-        TERM_FLAG_7BIT_MODE                     = (1U << 0),    /* 7bit mode (default: off) */
+        TERM_FLAG_7BIT_MODE                     = (1U << 0),    /* 7bit mode (default: on) */
         TERM_FLAG_HIDE_CURSOR                   = (1U << 1),    /* hide cursor caret (default: off) */
         TERM_FLAG_INHIBIT_TPARM                 = (1U << 2),    /* do not send TPARM unrequested (default: off) */
         TERM_FLAG_NEWLINE_MODE                  = (1U << 3),    /* perform carriage-return on line-feeds (default: off) */