Changeset 2994ca2
- Timestamp:
- Jul 24, 2011, 5:18:27 PM (13 years ago)
- Parents:
- 7abfcf2 (diff), 1314e49 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
variable.c
r6f7d4f6 r1314e49 166 166 OWLVAR_ENUM_FULL( "disable-ctrl-d" /* %OwlVarStub:lockout_ctrld */, 1, 167 167 "don't send zephyrs on C-d", 168 "If set to 'o ff', C-d won't send a zephyr from the edit\n"169 "window. If set to 'o n', C-d will always send a zephyr\n"168 "If set to 'on', C-d won't send a zephyr from the edit\n" 169 "window. If set to 'off', C-d will always send a zephyr\n" 170 170 "being composed in the edit window. If set to 'middle',\n" 171 171 "C-d will only ever send a zephyr if the cursor is at\n" -
fmtext.c
rd8f22b6 r7abfcf2 186 186 static void _owl_fmtext_wcolor_set(WINDOW *w, short pair) 187 187 { 188 cchar_t background; 189 wchar_t blank[2] = { ' ', 0 }; 188 190 if (has_colors()) { 189 wcolor_set(w,pair,NULL); 190 wbkgdset(w, COLOR_PAIR(pair)); 191 wcolor_set(w, pair, NULL); 192 /* Set the background with wbkgrndset so that we can handle color-pairs 193 * past 256 on ncurses ABI 6 and later. */ 194 setcchar(&background, blank, 0, pair, NULL); 195 wbkgrndset(w, &background); 191 196 } 192 197 }
Note: See TracChangeset
for help on using the changeset viewer.