summaryrefslogtreecommitdiff
path: root/src/libsystemd-terminal
diff options
context:
space:
mode:
authorDavid Herrmann <dh.herrmann@gmail.com>2014-10-05 14:45:33 +0200
committerDavid Herrmann <dh.herrmann@gmail.com>2014-10-05 14:45:33 +0200
commit621dbb0569ec318e78cfa7c71646b78eee46e8a5 (patch)
tree8efecff853d3a7a0129fd0dcb91ab564d35c5c30 /src/libsystemd-terminal
parentb7af2c8740e91a73348457fade97609b93e70a8d (diff)
terminal: fix TERM_FLAG_* comment
7BIT mode is enabled by default. Fix the comment to state this correctly.
Diffstat (limited to 'src/libsystemd-terminal')
-rw-r--r--src/libsystemd-terminal/term-internal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsystemd-terminal/term-internal.h b/src/libsystemd-terminal/term-internal.h
index f0f4432c80..a023498b53 100644
--- a/src/libsystemd-terminal/term-internal.h
+++ b/src/libsystemd-terminal/term-internal.h
@@ -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) */