Skip to content

Commit 4a5e8e2

Browse files
committed
Changed some references to PDCurses to PDCursesMod (situations where the behaviors really are different between the two forks)
1 parent 277765e commit 4a5e8e2

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

demos/init_col.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,10 +101,10 @@ int main( const int argc, const char *argv[])
101101
mvaddstr( line++, 12, "This should be green text on blue.");
102102
attrset( COLOR_PAIR( 4));
103103
mvaddstr( line++, 2, "This uses an uninitialized color pair. Its behavior is");
104-
mvaddstr( line++, 2, "undefined, but it'll be red-on-blue in PDCurses.");
104+
mvaddstr( line++, 2, "undefined, but it'll be red-on-blue in PDCursesMod.");
105105
attrset( COLOR_PAIR( 0));
106106
mvaddstr( line++, 2, "The above two lines were drawn with an uninitialized color");
107-
mvaddstr( line++, 2, "pair. The resulting behavior is undefined. PDCurses will use");
107+
mvaddstr( line++, 2, "pair. The resulting behavior is undefined. PDCursesMod will use");
108108
mvaddstr( line++, 2, "unusual colors in hopes you'll notice your mistake. On ncurses,");
109109
mvaddstr( line++, 2, "you just get black text. Hit a key...");
110110
while( getch( ) == KEY_RESIZE)
@@ -139,7 +139,7 @@ int main( const int argc, const char *argv[])
139139
mvaddstr( line++, 2, "And here's what things look like after reset_color_pairs().");
140140
mvaddstr( line++, 2, "We've discarded all color-pair info. So all non-default");
141141
mvaddstr( line++, 2, "(i.e., not color pair 0) text will become black (in ncurses)");
142-
mvaddstr( line++, 2, "or red on blue (in PDCurses).");
142+
mvaddstr( line++, 2, "or red on blue (in PDCursesMod).");
143143
mvaddstr( line++, 2, "Hit a key");
144144
while( getch( ) == KEY_RESIZE)
145145
resize_term( 0, 0);

0 commit comments

Comments
 (0)