ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/command.C
(Generate patch)

Comparing rxvt-unicode/src/command.C (file contents):
Revision 1.218 by root, Sat Dec 31 16:40:28 2005 UTC vs.
Revision 1.228 by root, Mon Jan 2 16:08:34 2006 UTC

43 * along with this program; if not, write to the Free Software 43 * along with this program; if not, write to the Free Software
44 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 44 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
45 *----------------------------------------------------------------------*/ 45 *----------------------------------------------------------------------*/
46 46
47/*{{{ includes: */ 47/*{{{ includes: */
48#include "../config.h" /* NECESSARY */ 48#include "../config.h"
49#include "rxvt.h" /* NECESSARY */ 49#include "rxvt.h"
50#include "rxvtperl.h"
50#include "version.h" 51#include "version.h"
51#include "command.h" 52#include "command.h"
53
54#if HAVE_SCHED_YIELD
55# include <sched.h>
56#endif
52 57
53#ifdef KEYSYM_RESOURCE 58#ifdef KEYSYM_RESOURCE
54# include "keyboard.h" 59# include "keyboard.h"
55#endif 60#endif
56 61
155 } 160 }
156 161
157 x--; 162 x--;
158 } 163 }
159} 164}
160#endif
161 165
162void 166void
163rxvt_term::iso14755_51 (unicode_t ch, rend_t r, int x, int y) 167rxvt_term::iso14755_51 (unicode_t ch, rend_t r, int x, int y)
164{ 168{
165#if ENABLE_OVERLAY
166 rxvt_fontset *fs = FONTSET (r); 169 rxvt_fontset *fs = FONTSET (r);
167 rxvt_font *f = (*fs)[fs->find_font (ch)]; 170 rxvt_font *f = (*fs)[fs->find_font (ch)];
168 wchar_t *chr, *alloc, ch2, *fname; 171 wchar_t *chr, *alloc, ch2, *fname;
169 int len; 172 int len;
170 173
238 241
239# if ENABLE_COMBINING 242# if ENABLE_COMBINING
240 if (alloc) 243 if (alloc)
241 delete [] alloc; 244 delete [] alloc;
242# endif 245# endif
243#endif
244} 246}
247#endif
245 248
246void 249void
247rxvt_term::commit_iso14755 () 250rxvt_term::commit_iso14755 ()
248{ 251{
249 wchar_t ch[2]; 252 wchar_t ch[2];
866 } 869 }
867 870
868 if (len <= 0) 871 if (len <= 0)
869 return; /* not mapped */ 872 return; /* not mapped */
870 873
871 if (options & Opt_scrollTtyKeypress) 874 if (OPTION (Opt_scrollTtyKeypress))
872 if (view_start) 875 if (view_start)
873 { 876 {
874 view_start = 0; 877 view_start = 0;
875 want_refresh = 1; 878 want_refresh = 1;
876 } 879 }
982 SET_LOCALE (locale); 985 SET_LOCALE (locale);
983 986
984 display->flush (); 987 display->flush ();
985 988
986 if (want_refresh && !flush_ev.active) 989 if (want_refresh && !flush_ev.active)
987 flush_ev.start (NOW + 0.01); 990 flush_ev.start (NOW + 1. / 60.); // refresh at max. 60 hz normally
988} 991}
989 992
990void 993void
991rxvt_term::flush_cb (time_watcher &w) 994rxvt_term::flush_cb (time_watcher &w)
992{ 995{
1067 w.start (w.at + SCROLLBAR_CONTINUOUS_DELAY); 1070 w.start (w.at + SCROLLBAR_CONTINUOUS_DELAY);
1068 } 1071 }
1069} 1072}
1070#endif 1073#endif
1071 1074
1075#if HAVE_SCHED_YIELD
1076static struct event_handler
1077{
1078 check_watcher cw_yield;
1079
1080 void yield (check_watcher &w)
1081 {
1082 sched_yield ();
1083 w.stop ();
1084 }
1085
1086 event_handler ()
1087 : cw_yield (this, &event_handler::yield)
1088 {
1089 }
1090} event_handler;
1091#endif
1092
1072bool 1093bool
1073rxvt_term::pty_fill () 1094rxvt_term::pty_fill ()
1074{ 1095{
1075 ssize_t n = cmdbuf_endp - cmdbuf_ptr; 1096 ssize_t n = cmdbuf_endp - cmdbuf_ptr;
1076 1097
1082 1103
1083 memmove (cmdbuf_base, cmdbuf_ptr, n); 1104 memmove (cmdbuf_base, cmdbuf_ptr, n);
1084 cmdbuf_ptr = cmdbuf_base; 1105 cmdbuf_ptr = cmdbuf_base;
1085 cmdbuf_endp = cmdbuf_ptr + n; 1106 cmdbuf_endp = cmdbuf_ptr + n;
1086 1107
1087 n = read (pty.pty, cmdbuf_endp, CBUFSIZ - n); 1108 ssize_t r = read (pty.pty, cmdbuf_endp, CBUFSIZ - n);
1088 1109
1089 if (n > 0) 1110 if (r > 0)
1090 { 1111 {
1091 cmdbuf_endp += n; 1112 cmdbuf_endp += r;
1092 return true; 1113 return true;
1093 } 1114 }
1094 else if ((n < 0 && errno != EAGAIN && errno != EINTR) || n == 0) 1115 else if (r < 0 && (errno == EAGAIN || errno == EINTR))
1116 {
1117#if HAVE_SCHED_YIELD
1118 if (display->is_local)
1119 event_handler.cw_yield.start ();
1120#endif
1121 }
1122 else
1095 { 1123 {
1096 pty_ev.stop (); 1124 pty_ev.stop ();
1097 1125
1098 if (!(options & Opt_hold)) 1126 if (!OPTION (Opt_hold))
1099 destroy (); 1127 destroy ();
1100 } 1128 }
1101 1129
1102 return false; 1130 return false;
1103} 1131}
1125 recolour_cursor (); 1153 recolour_cursor ();
1126 1154
1127#ifdef POINTER_BLANK 1155#ifdef POINTER_BLANK
1128 hidden_pointer = 0; 1156 hidden_pointer = 0;
1129 1157
1130 if (options & Opt_pointerBlank) 1158 if (OPTION (Opt_pointerBlank))
1131 pointer_ev.start (NOW + pointerBlankDelay); 1159 pointer_ev.start (NOW + pointerBlankDelay);
1132#endif 1160#endif
1133} 1161}
1134 1162
1135#ifdef POINTER_BLANK 1163#ifdef POINTER_BLANK
1136void 1164void
1137rxvt_term::pointer_blank () 1165rxvt_term::pointer_blank ()
1138{ 1166{
1139 if (! (options & Opt_pointerBlank)) 1167 if (! OPTION (Opt_pointerBlank))
1140 return; 1168 return;
1141 1169
1142 XDefineCursor (display->display, vt, display->blank_cursor); 1170 XDefineCursor (display->display, vt, display->blank_cursor);
1143 XFlush (display->display); 1171 XFlush (display->display);
1144 1172
1242 1270
1243 SET_R (this); 1271 SET_R (this);
1244 SET_LOCALE (locale); 1272 SET_LOCALE (locale);
1245 1273
1246#if defined(CURSOR_BLINK) 1274#if defined(CURSOR_BLINK)
1247 if ((options & Opt_cursorBlink) && ev.type == KeyPress) 1275 if (OPTION (Opt_cursorBlink) && ev.type == KeyPress)
1248 { 1276 {
1249 if (hidden_cursor) 1277 if (hidden_cursor)
1250 { 1278 {
1251 hidden_cursor = 0; 1279 hidden_cursor = 0;
1252 want_refresh = 1; 1280 want_refresh = 1;
1255 cursor_blink_ev.start (NOW + BLINK_INTERVAL); 1283 cursor_blink_ev.start (NOW + BLINK_INTERVAL);
1256 } 1284 }
1257#endif 1285#endif
1258 1286
1259#if defined(POINTER_BLANK) 1287#if defined(POINTER_BLANK)
1260 if ((options & Opt_pointerBlank) && pointerBlankDelay > 0) 1288 if (OPTION (Opt_pointerBlank) && pointerBlankDelay > 0)
1261 { 1289 {
1262 if (ev.type == MotionNotify 1290 if (ev.type == MotionNotify
1263 || ev.type == ButtonPress 1291 || ev.type == ButtonPress
1264 || ev.type == ButtonRelease) 1292 || ev.type == ButtonRelease)
1265 if (hidden_pointer) 1293 if (hidden_pointer)
1461 seen_resize = 1; 1489 seen_resize = 1;
1462 resize_all_windows (ev.xconfigure.width, ev.xconfigure.height, 1); 1490 resize_all_windows (ev.xconfigure.width, ev.xconfigure.height, 1);
1463 } 1491 }
1464 1492
1465#ifdef TRANSPARENT /* XXX: maybe not needed - leave in for now */ 1493#ifdef TRANSPARENT /* XXX: maybe not needed - leave in for now */
1466 if (options & Opt_transparent) 1494 if (OPTION (Opt_transparent))
1467 check_our_parents (); 1495 check_our_parents ();
1468#endif 1496#endif
1469 } 1497 }
1470 break; 1498 break;
1471 1499
1672{ 1700{
1673 if (!focus) 1701 if (!focus)
1674 { 1702 {
1675 focus = 1; 1703 focus = 1;
1676 want_refresh = 1; 1704 want_refresh = 1;
1705
1706 PERL_INVOKE ((this, HOOK_FOCUS_OUT, DT_END));
1707
1677#if USE_XIM 1708#if USE_XIM
1678 if (Input_Context != NULL) 1709 if (Input_Context != NULL)
1679 { 1710 {
1680 IMSetStatusPosition (); 1711 IMSetStatusPosition ();
1681 XSetICFocus (Input_Context); 1712 XSetICFocus (Input_Context);
1682 } 1713 }
1683#endif 1714#endif
1684#if CURSOR_BLINK 1715#if CURSOR_BLINK
1685 if (options & Opt_cursorBlink) 1716 if (OPTION (Opt_cursorBlink))
1686 cursor_blink_ev.start (NOW + BLINK_INTERVAL); 1717 cursor_blink_ev.start (NOW + BLINK_INTERVAL);
1687#endif 1718#endif
1688#if OFF_FOCUS_FADING 1719#if OFF_FOCUS_FADING
1689 if (rs[Rs_fade]) 1720 if (rs[Rs_fade])
1690 { 1721 {
1701 if (focus) 1732 if (focus)
1702 { 1733 {
1703 focus = 0; 1734 focus = 0;
1704 want_refresh = 1; 1735 want_refresh = 1;
1705 1736
1737 PERL_INVOKE ((this, HOOK_FOCUS_OUT, DT_END));
1738
1706#if ENABLE_FRILLS || ISO_14755 1739#if ENABLE_FRILLS || ISO_14755
1740 if (iso14755buf)
1741 {
1707 iso14755buf = 0; 1742 iso14755buf = 0;
1708#endif
1709#if ENABLE_OVERLAY 1743# if ENABLE_OVERLAY
1710 scr_overlay_off (); 1744 scr_overlay_off ();
1745# endif
1746 }
1711#endif 1747#endif
1712#if USE_XIM 1748#if USE_XIM
1713 if (Input_Context != NULL) 1749 if (Input_Context != NULL)
1714 XUnsetICFocus (Input_Context); 1750 XUnsetICFocus (Input_Context);
1715#endif 1751#endif
1716#if CURSOR_BLINK 1752#if CURSOR_BLINK
1717 if (options & Opt_cursorBlink) 1753 if (OPTION (Opt_cursorBlink))
1718 cursor_blink_ev.stop (); 1754 cursor_blink_ev.stop ();
1719 hidden_cursor = 0; 1755 hidden_cursor = 0;
1720#endif 1756#endif
1721#if OFF_FOCUS_FADING 1757#if OFF_FOCUS_FADING
1722 if (rs[Rs_fade]) 1758 if (rs[Rs_fade])
1746 && ev.xproperty.atom != xa[XA_ESETROOT_PMAP_ID]) 1782 && ev.xproperty.atom != xa[XA_ESETROOT_PMAP_ID])
1747 return; 1783 return;
1748 1784
1749 /* FALLTHROUGH */ 1785 /* FALLTHROUGH */
1750 case ReparentNotify: 1786 case ReparentNotify:
1751 if ((options & Opt_transparent) && check_our_parents () && am_transparent) 1787 if (OPTION (Opt_transparent) && check_our_parents () && am_transparent)
1752 want_refresh = want_full_refresh = 1; 1788 want_refresh = want_full_refresh = 1;
1753 break; 1789 break;
1754 } 1790 }
1755} 1791}
1756#endif 1792#endif
2098 2134
2099 v = ev.button == Button4 ? UP : DN; 2135 v = ev.button == Button4 ? UP : DN;
2100 2136
2101 if (ev.state & ShiftMask) 2137 if (ev.state & ShiftMask)
2102 i = 1; 2138 i = 1;
2103 else if (options & Opt_mouseWheelScrollPage) 2139 else if (OPTION (Opt_mouseWheelScrollPage))
2104 i = nrow - 1; 2140 i = nrow - 1;
2105 else 2141 else
2106 i = 5; 2142 i = 5;
2107 2143
2108# ifdef MOUSE_SLIP_WHEELING 2144# ifdef MOUSE_SLIP_WHEELING
2394 XWindowAttributes wattr, wrootattr; 2430 XWindowAttributes wattr, wrootattr;
2395 dDisp; 2431 dDisp;
2396 2432
2397 pchanged = 0; 2433 pchanged = 0;
2398 2434
2399 if (!(options & Opt_transparent)) 2435 if (!OPTION (Opt_transparent))
2400 return pchanged; /* Don't try any more */ 2436 return pchanged; /* Don't try any more */
2401 2437
2402 XGetWindowAttributes (disp, display->root, &wrootattr); 2438 XGetWindowAttributes (disp, display->root, &wrootattr);
2403 rootdepth = wrootattr.depth; 2439 rootdepth = wrootattr.depth;
2404 2440
2682 if (ch == C0_LF) 2718 if (ch == C0_LF)
2683 nlines++; 2719 nlines++;
2684 2720
2685 refresh_count++; 2721 refresh_count++;
2686 2722
2687 if (!(options & Opt_jumpScroll) 2723 if (!OPTION (Opt_jumpScroll)
2688 || (refresh_count >= refresh_limit * (nrow - 1))) 2724 || (refresh_count >= refresh_limit * (nrow - 1)))
2689 { 2725 {
2690 refreshnow = true; 2726 refreshnow = true;
2727 refresh_count = 0;
2691 ch = NOCHAR; 2728 ch = NOCHAR;
2692 break; 2729 break;
2693 } 2730 }
2694 2731
2695 // scr_add_lines only works for nlines <= nrow - 1. 2732 // scr_add_lines only works for nlines <= nrow - 1.
2726 * the number of pages between refreshes is refresh_limit, which 2763 * the number of pages between refreshes is refresh_limit, which
2727 * is incremented here because we must be doing flat-out scrolling. 2764 * is incremented here because we must be doing flat-out scrolling.
2728 */ 2765 */
2729 if (refreshnow) 2766 if (refreshnow)
2730 { 2767 {
2731 if ((options & Opt_jumpScroll) && refresh_limit < REFRESH_PERIOD) 2768 if (OPTION (Opt_jumpScroll) && refresh_limit < REFRESH_PERIOD)
2732 refresh_limit++; 2769 refresh_limit++;
2733 else 2770 else
2734 { 2771 {
2735 flag = true; 2772 flag = true;
2736 scr_refresh (refresh_type); 2773 scr_refresh (refresh_type);
2774 flush_ev.stop ();
2737 } 2775 }
2738 } 2776 }
2739 2777
2740 } 2778 }
2741 else 2779 else
3400 break; 3438 break;
3401 case 6: /* CPR requested */ 3439 case 6: /* CPR requested */
3402 scr_report_position (); 3440 scr_report_position ();
3403 break; 3441 break;
3404 case 7: /* unofficial extension */ 3442 case 7: /* unofficial extension */
3405 if (options & Opt_insecure) 3443 if (OPTION (Opt_insecure))
3406 tt_printf ("%-.250s\012", rs[Rs_display_name]); 3444 tt_printf ("%-.250s\012", rs[Rs_display_name]);
3407 break; 3445 break;
3408 case 8: /* unofficial extension */ 3446 case 8: /* unofficial extension */
3409 process_xterm_seq (XTerm_title, RESNAME "-" VERSION, CHAR_ST); 3447 process_xterm_seq (XTerm_title, RESNAME "-" VERSION, CHAR_ST);
3410 break; 3448 break;
3574 break; 3612 break;
3575 case 20: /* report icon label */ 3613 case 20: /* report icon label */
3576 { 3614 {
3577 char *s; 3615 char *s;
3578 XGetIconName (disp, parent[0], &s); 3616 XGetIconName (disp, parent[0], &s);
3579 tt_printf ("\033]L%-.250s\234", (options & Opt_insecure) && s ? s : ""); /* 8bit ST */ 3617 tt_printf ("\033]L%-.250s\234", OPTION (Opt_insecure) && s ? s : ""); /* 8bit ST */
3580 XFree (s); 3618 XFree (s);
3581 } 3619 }
3582 break; 3620 break;
3583 case 21: /* report window title */ 3621 case 21: /* report window title */
3584 { 3622 {
3585 char *s; 3623 char *s;
3586 XFetchName (disp, parent[0], &s); 3624 XFetchName (disp, parent[0], &s);
3587 tt_printf ("\033]l%-.250s\234", (options & Opt_insecure) && s ? s : ""); /* 8bit ST */ 3625 tt_printf ("\033]l%-.250s\234", OPTION (Opt_insecure) && s ? s : ""); /* 8bit ST */
3588 XFree (s); 3626 XFree (s);
3589 } 3627 }
3590 break; 3628 break;
3591 } 3629 }
3592} 3630}
3868 // TODO, when secure mode? 3906 // TODO, when secure mode?
3869 break; 3907 break;
3870 3908
3871#ifdef MENUBAR 3909#ifdef MENUBAR
3872 case URxvt_Menu: 3910 case URxvt_Menu:
3873 if (options & Opt_insecure) 3911 if (OPTION (Opt_insecure))
3874 menubar_dispatch (const_cast<char *>(str)); // casting away constness is checked 3912 menubar_dispatch (const_cast<char *>(str)); // casting away constness is checked
3875 break; 3913 break;
3876#endif 3914#endif
3877#if 0 3915#if 0
3878 case XTerm_dumpscreen: /* no error notices */ 3916 case XTerm_dumpscreen: /* no error notices */
3894 case URxvt_italicFont: 3932 case URxvt_italicFont:
3895 case URxvt_boldItalicFont: 3933 case URxvt_boldItalicFont:
3896#endif 3934#endif
3897 if (query) 3935 if (query)
3898 tt_printf ("\33]%d;%-.250s%c", saveop, 3936 tt_printf ("\33]%d;%-.250s%c", saveop,
3899 (options & Opt_insecure) && fontset[op - URxvt_font]->fontdesc 3937 OPTION (Opt_insecure) && fontset[op - URxvt_font]->fontdesc
3900 ? fontset[op - URxvt_font]->fontdesc : "", 3938 ? fontset[op - URxvt_font]->fontdesc : "",
3901 resp); 3939 resp);
3902 else 3940 else
3903 { 3941 {
3904 const char *&res = rs[Rs_font + (op - URxvt_font)]; 3942 const char *&res = rs[Rs_font + (op - URxvt_font)];
3910 break; 3948 break;
3911 3949
3912#if ENABLE_FRILLS 3950#if ENABLE_FRILLS
3913 case URxvt_locale: 3951 case URxvt_locale:
3914 if (query) 3952 if (query)
3915 tt_printf ("\33]%d;%-.250s%c", URxvt_locale, (options & Opt_insecure) ? locale : "", resp); 3953 tt_printf ("\33]%d;%-.250s%c", URxvt_locale, OPTION (Opt_insecure) ? locale : "", resp);
3916 else 3954 else
3917 { 3955 {
3918 set_locale (str); 3956 set_locale (str);
3919 pty.set_utf8_mode (enc_utf8); 3957 pty.set_utf8_mode (enc_utf8);
3920 init_xlocale (); 3958 init_xlocale ();
4048 } 4086 }
4049 4087
4050 /* extra handling for values with state unkept */ 4088 /* extra handling for values with state unkept */
4051 switch (arg[i]) 4089 switch (arg[i])
4052 { 4090 {
4091#if ENABLE_STYLES
4092 case 1021:
4093 if (mode)
4094 SET_OPTION (Opt_intensityStyles);
4095 else
4096 CLR_OPTION (Opt_intensityStyles);
4097
4098 scr_touch (true);
4099 break;
4100#endif
4053 case 1048: /* alternative cursor save */ 4101 case 1048: /* alternative cursor save */
4054 case 1049: 4102 case 1049:
4055 if (options & Opt_secondaryScreen) 4103 if (OPTION (Opt_secondaryScreen))
4056 if (mode == 0) 4104 if (mode == 0)
4057 scr_cursor (RESTORE); 4105 scr_cursor (RESTORE);
4058 else if (mode == 1) 4106 else if (mode == 1)
4059 scr_cursor (SAVE); 4107 scr_cursor (SAVE);
4060 break; 4108 break;
4075 case 3: /* 80/132 */ 4123 case 3: /* 80/132 */
4076 if (priv_modes & PrivMode_132OK) 4124 if (priv_modes & PrivMode_132OK)
4077 set_widthheight (((state ? 132 : 80) * fwidth), height); 4125 set_widthheight (((state ? 132 : 80) * fwidth), height);
4078 break; 4126 break;
4079 case 4: /* smooth scrolling */ 4127 case 4: /* smooth scrolling */
4080 if (state) 4128 if (!state)
4081 options &= ~Opt_jumpScroll; 4129 SET_OPTION (Opt_jumpScroll);
4082 else 4130 else
4083 options |= Opt_jumpScroll; 4131 CLR_OPTION (Opt_jumpScroll);
4084 break; 4132 break;
4085 case 5: /* reverse video */ 4133 case 5: /* reverse video */
4086 scr_rvideo_mode (state); 4134 scr_rvideo_mode (state);
4087 break; 4135 break;
4088 case 6: /* relative/absolute origins */ 4136 case 6: /* relative/absolute origins */
4129#if 0 4177#if 0
4130 case 1001: 4178 case 1001:
4131 break; /* X11 mouse highlighting */ 4179 break; /* X11 mouse highlighting */
4132#endif 4180#endif
4133 case 1010: /* scroll to bottom on TTY output inhibit */ 4181 case 1010: /* scroll to bottom on TTY output inhibit */
4134 if (state) 4182 if (!state)
4135 options &= ~Opt_scrollTtyOutput; 4183 SET_OPTION (Opt_scrollTtyOutput);
4136 else 4184 else
4137 options |= Opt_scrollTtyOutput; 4185 CLR_OPTION (Opt_scrollTtyOutput);
4138 break; 4186 break;
4139 case 1011: /* scroll to bottom on key press */ 4187 case 1011: /* scroll to bottom on key press */
4140 if (state) 4188 if (state)
4141 options |= Opt_scrollTtyKeypress; 4189 SET_OPTION (Opt_scrollTtyKeypress);
4142 else 4190 else
4143 options &= ~Opt_scrollTtyKeypress; 4191 CLR_OPTION (Opt_scrollTtyKeypress);
4144 break; 4192 break;
4145 case 1047: /* secondary screen w/ clearing last */ 4193 case 1047: /* secondary screen w/ clearing last */
4146 if (options & Opt_secondaryScreen) 4194 if (OPTION (Opt_secondaryScreen))
4147 if (current_screen != PRIMARY) 4195 if (current_screen != PRIMARY)
4148 scr_erase_screen (2); 4196 scr_erase_screen (2);
4149 scr_change_screen (state); 4197 scr_change_screen (state);
4150 break; 4198 break;
4151 case 1049: /* secondary screen w/ clearing first */ 4199 case 1049: /* secondary screen w/ clearing first */
4152 scr_change_screen (state); 4200 scr_change_screen (state);
4153 if (options & Opt_secondaryScreen) 4201 if (OPTION (Opt_secondaryScreen))
4154 if (current_screen != PRIMARY) 4202 if (current_screen != PRIMARY)
4155 scr_erase_screen (2); 4203 scr_erase_screen (2);
4156 break; 4204 break;
4157 default: 4205 default:
4158 break; 4206 break;
4308 case 106: 4356 case 106:
4309 case 107: 4357 case 107:
4310 scr_color ((unsigned int) (minBrightCOLOR + (arg[i] - 100)), Color_bg); 4358 scr_color ((unsigned int) (minBrightCOLOR + (arg[i] - 100)), Color_bg);
4311 break; 4359 break;
4312#endif 4360#endif
4313
4314 } 4361 }
4315 } 4362 }
4316} 4363}
4317/*}}} */ 4364/*}}} */
4318 4365

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines