|
@@ -114,7 +114,8 @@ void harry_idle_event(int fd) {
|
|
|
<< phrases[r] << "^P2^CR^D" << std::setw(2) << strlen(phrases[r]);
|
|
|
*/
|
|
|
buffer << TRIGGER "CS" TRIGGER "S2" TRIGGER "C" << std::setfill('0')
|
|
|
- << std::setw(2) << color << selected
|
|
|
+ << std::setw(2) << color
|
|
|
+ << selected
|
|
|
|
|
|
<< TRIGGER "S0" TRIGGER "R0" TRIGGER "P" << pause
|
|
|
<< TRIGGER "CR" TRIGGER "D" << std::setw(2) << selected.size();
|
|
@@ -144,6 +145,8 @@ int mangle_clrscr(std::string &buffer, std::string &work, size_t pos) {
|
|
|
if (!level)
|
|
|
return 0;
|
|
|
|
|
|
+
|
|
|
+
|
|
|
if (ANSI_CLS_count > 1) {
|
|
|
|
|
|
|
|
@@ -237,7 +240,41 @@ int mangle_clrscr(std::string &buffer, std::string &work, size_t pos) {
|
|
|
homes cursor and changes to another color. (This can be seen.)
|
|
|
*/
|
|
|
TRIGGER "G0101" TRIGGER "C07" TRIGGER
|
|
|
- "S9Segmentation fault (core dumped)" TRIGGER "P2"};
|
|
|
+ "S9Segmentation fault (core dumped)" TRIGGER "P2",
|
|
|
+ TRIGGER
|
|
|
+ "G0101" TRIGGER "C07" TRIGGER "S0"
|
|
|
+ "/usr/include/c++/7/bits/basic_string.h:1057: "
|
|
|
+ "std::__cxx11::basic_string<_CharT, _Traits, _Alloc>::reference "
|
|
|
+ "std::__cxx11::basic_string<_CharT, _Traits, "
|
|
|
+ "_Alloc>::operator[](std::__cxx11::basic_string<_CharT, _Traits, "
|
|
|
+ "_Alloc>::size_type) [with _CharT = char; _Traits = "
|
|
|
+ "std::char_traits<char>; _Alloc = std::allocator<char>; "
|
|
|
+ "std::__cxx11::basic_string<_CharT, _Traits, _Alloc>::reference = "
|
|
|
+ "char&; std::__cxx11::basic_string<_CharT, _Traits, "
|
|
|
+ "_Alloc>::size_type = long unsigned int]: Assertion '__pos <= "
|
|
|
+ "size()' failed." TRIGGER "P1"
|
|
|
+ "\r\nAborted (core dumped)" TRIGGER "P2" TRIGGER "S0",
|
|
|
+ TRIGGER "G0101" TRIGGER "C07" TRIGGER "S0"
|
|
|
+ "/usr/include/c++/7/debug/vector:417:\r\n"
|
|
|
+ "Error: attempt to subscript container with out-of-bounds "
|
|
|
+ "index 13, but\r\n"
|
|
|
+ "container only holds 0 elements.\r\n"
|
|
|
+ "\r\n"
|
|
|
+ "Objects involved in the operation:\r\n"
|
|
|
+ " sequence \"this\" @ 0x0x7fff43fa94a0 {\r\n"
|
|
|
+ " type = "
|
|
|
+ "std::__debug::vector<std::__cxx11::basic_string<char, "
|
|
|
+ "std::char_traits<char>, std::allocator<char> >, "
|
|
|
+ "std::allocator<std::__cxx11::basic_string<char, "
|
|
|
+ "std::char_traits<char>, std::allocator<char> > > >;\r\n"
|
|
|
+ " }\r\n"
|
|
|
+ "Aborted (core dumped)" TRIGGER "P2" TRIGGER "S0"
|
|
|
+
|
|
|
+ };
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
const int max_phrases = sizeof(phrasing) / sizeof(char *);
|
|
|
static LastSeen last_phrasing(LastSeen::best_guess(max_phrases));
|
|
|
|
|
@@ -432,8 +469,12 @@ int mangle(int fd, std::string &buffer) {
|
|
|
text.clear();
|
|
|
text_offsets.clear();
|
|
|
|
|
|
+
|
|
|
+
|
|
|
+ console_details chew = console;
|
|
|
+
|
|
|
for (stri = 0; stri < buffer.size(); ++stri) {
|
|
|
- termchar tc = console_char(&console, work[stri]);
|
|
|
+ termchar tc = console_char(&chew, work[stri]);
|
|
|
|
|
|
if (tc.in_ansi) {
|
|
|
if (tc.ansi != START) {
|