OSDN Git Service

Moved some commented out code and adjusted the comment to match up with what's in...
authorEric Branlund <ebranlund@fastmail.com>
Tue, 29 Sep 2020 06:48:35 +0000 (23:48 -0700)
committerEric Branlund <ebranlund@fastmail.com>
Tue, 29 Sep 2020 06:48:35 +0000 (23:48 -0700)
src/main-cocoa.m

index 5b7a281..31eebf6 100644 (file)
@@ -5357,15 +5357,18 @@ static term *term_data_link(int i)
     /* Initialize the term */
     term_init(newterm, columns, rows, 256 /* keypresses, for some reason? */);
 
-    /* Differentiate between BS/^h, Tab/^i, etc. */
-    /* newterm->complex_input = TRUE; */
-
     /* Use a "software" cursor */
     newterm->soft_cursor = TRUE;
 
     /* Disable the per-row flush notifications since they are not used. */
     newterm->never_frosh = TRUE;
 
+    /*
+     * Differentiate between BS/^h, Tab/^i, ... so ^h and ^j work under the
+     * roguelike command set.
+     */
+    /* newterm->complex_input = TRUE; */
+
     /* Erase with "white space" */
     newterm->attr_blank = TERM_WHITE;
     newterm->char_blank = ' ';