aboutsummaryrefslogtreecommitdiffhomepage
path: root/screen.cpp
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2014-03-01 20:33:26 -0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2014-03-01 20:33:26 -0800
commitb187125b636c14253d626e4c2470f89e192168cf (patch)
tree2bece4c85b78e4bd5cedbfb77e57b0e7fe850c91 /screen.cpp
parent84ea96f383d3713f750d39a74d7b8693275db25d (diff)
parentd232a0f9512d0e1b575235fdf4119a63353ecedd (diff)
Merge branch 'master' into parser_cleanup
Diffstat (limited to 'screen.cpp')
-rw-r--r--screen.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/screen.cpp b/screen.cpp
index d4da5b6b..7c02c384 100644
--- a/screen.cpp
+++ b/screen.cpp
@@ -1,4 +1,4 @@
-/** \file screen.cpp High level library for handling the terminal screen
+/** \file screen.c High level library for handling the terminal screen
The screen library allows the interactive reader to write its
output to screen efficiently by keeping an internal representation
@@ -298,6 +298,7 @@ size_t escape_code_length(const wchar_t *code)
if (code[1] >= L'@' && code[1] <= L'_')
{
resulting_length = 2;
+ found = true;
}
}