From: root Date: Wed, 5 Nov 2008 15:44:03 +0000 (+0000) Subject: *** empty log message *** X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=dc749eee445590f179dde1d1b681da9724ad28ee;p=dana%2Furxvt.git *** empty log message *** --- diff --git a/Changes b/Changes index 9f423854..9be099d5 100644 --- a/Changes +++ b/Changes @@ -57,6 +57,7 @@ TODO: cursor restore/rendition restore on rmcup droppings when urxvt viewed the scrollback buffer. - use current rendition style in DCH sequence. - the 132/80 mode switch no longer forces a screen reset. + - add an osc sequence to change the border colour (Emanuele Giaquinta). - new perl extension "overlay-osc", for status displays and the like. - fix some minor cursor drawing issues with overlays by allowing overlays to modify screen flags (to disable the cursor themselves). diff --git a/doc/rxvt.7.pod b/doc/rxvt.7.pod index 4b43b08c..b9401af6 100644 --- a/doc/rxvt.7.pod +++ b/doc/rxvt.7.pod @@ -2025,6 +2025,7 @@ B can be escaped by prefixing it with SYN (0x16, ^V). B<< C >> Change background pixmap tint colour to B<< C >> (Compile transparency). B<< C >> Change colour of bold characters to B<< C >> B<< C >> Change colour of underlined characters to B<< C >> + B<< C >> Change colour of the border to B<< C >> B<< C >> Set normal fontset to B<< C >>. Same as C. B<< C >> Set bold fontset to B<< C >>. Similar to C (Compile styles). B<< C >> Set italic fontset to B<< C >>. Similar to C (Compile styles). diff --git a/src/command.C b/src/command.C index fb83ccb7..32a391f2 100644 --- a/src/command.C +++ b/src/command.C @@ -3402,6 +3402,9 @@ rxvt_term::process_xterm_seq (int op, const char *str, char resp) process_color_seq (op, Color_IT, str, resp); break; #endif + case URxvt_Color_border: + process_color_seq (op, Color_border, str, resp); + break; #if ENABLE_TRANSPARENCY case URxvt_Color_tint: process_color_seq (op, Color_tint, str, resp); diff --git a/src/rxvt.h b/src/rxvt.h index 1b6d80ee..e19f2010 100644 --- a/src/rxvt.h +++ b/src/rxvt.h @@ -413,6 +413,7 @@ enum { URxvt_Color_tint = 705, // change actual tint colour URxvt_Color_BD = 706, // change actual 'Bold' color URxvt_Color_UL = 707, // change actual 'Underline' color + URxvt_Color_border = 708, URxvt_font = 710, URxvt_boldFont = 711,