Przeglądaj źródła

Restore fix for David's terminal.

Steve Thielemann 3 lat temu
rodzic
commit
730090dfeb
1 zmienionych plików z 3 dodań i 1 usunięć
  1. 3 1
      door.cpp

+ 3 - 1
door.cpp

@@ -382,7 +382,9 @@ void Door::detect_unicode_and_screen(void) {
       // 1;3R also happens under VSCodium.
       // 1;4R is what I get from syncterm.
 
-      if ((strstr(buffer, "1;1R") != nullptr) and
+      if (( (strstr(buffer, "1;1R") != nullptr) or 
+		      (strstr(buffer, "1;3R") != nullptr) )
+	      and
           ((strstr(buffer, "2;2R") != nullptr) or
            (strstr(buffer, "2;3R") != nullptr))) {