repo: rxvt-unicode-sixel action: commit revision: path_from: revision_from: c4c42064071d68b679d74be4ec5d6badfc12922e: path_to: revision_to:
commit c4c42064071d68b679d74be4ec5d6badfc12922e Author: Marc LehmannDate: Thu Jan 19 13:04:12 2012 +0000 *** empty log message *** diff --git a/Changes b/Changes
--- a/Changes +++ b/Changes @@ -32,6 +32,7 @@ TODO: split ROW into a ROW_fast (0..total*2-1) and ROW macros? for tabs. - allow again an empty suffix in a keysym list spec (patch by Sung Pae). + - unsupported support for sun studio's CC added. 9.14 Wed Dec 21 18:40:33 CET 2011 - INCOMPATIBLE CHANGE: the urxvtd default socket path is now diff --git a/README.FAQ b/README.FAQ
--- a/README.FAQ
+++ b/README.FAQ
@@ -776,7 +776,10 @@ xterm? I need this to decide about setting colours etc.
infocmp rxvt-unicode | ssh $REMOTE "mkdir -p .terminfo && cat >/tmp/ti && tic /tmp/ti"
One some systems you might need to set $TERMINFO to the full path of
- $HOME/.terminfo for this to work.
+ $HOME/.terminfo for this to work. Debian systems have a broken tic which
+ will not be able to overwrite the existing rxvt-unicode terminfo entry -
+ you might have to manually delete all traces of rxvt-unicode* from
+ /etc/terminfo.
If you cannot or do not want to do this, then you can simply set
"TERM=rxvt" or even "TERM=xterm", and live with the small number of
diff --git a/doc/rxvt.1.man.in b/doc/rxvt.1.man.in
--- a/doc/rxvt.1.man.in +++ b/doc/rxvt.1.man.in @@ -124,7 +124,7 @@ .\" ======================================================================== .\" .IX Title "@@RXVT_NAME@@ 1" -.TH @@RXVT_NAME@@ 1 "2011-12-18" "@@RXVT_VERSION@@" "RXVT-UNICODE" +.TH @@RXVT_NAME@@ 1 "2012-01-18" "@@RXVT_VERSION@@" "RXVT-UNICODE" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -274,10 +274,11 @@ alpha-blending. Compile \fIafterimage\fR; resource \fIblendType\fR. .IP "\fB\-blr\fR \fIHxV\fR" 4 .IX Item "-blr HxV" Apply Gaussian Blur with the specified radii to the transparent -background. If a single number is specified \- both vertical and +background. If a single number is specified, the vertical and horizontal radii are considered to be the same. Setting one of the -radii to 1 and another to a large number creates interesting effects -on some backgrounds. Maximum radius value is 128; +radii to 1 and the other to a large number creates interesting effects +on some backgrounds. The maximum radius value is 128. An horizontal or +vertical radius of 0 disables blurring; resource \fIblurRadius\fR. .IP "\fB\-icon\fR \fIfile\fR" 4 .IX Item "-icon file" @@ -1527,7 +1528,7 @@ White. .SS "\s-1ALPHA\s0 \s-1CHANNEL\s0 \s-1SUPPORT\s0" .IX Subsection "ALPHA CHANNEL SUPPORT" If Xft support has been compiled in and as long as Xft/Xrender/X don't get -their act together, rxvt-unicode will do it's own alpha channel management: +their act together, rxvt-unicode will do its own alpha channel management: .PP You can prefix any colour with an opaqueness percentage enclosed in brackets, i.e. \f(CW\*(C`[percent]\*(C'\fR, where \f(CW\*(C`percent\*(C'\fR is a decimal percentage diff --git a/doc/rxvt.7.man.in b/doc/rxvt.7.man.in
--- a/doc/rxvt.7.man.in +++ b/doc/rxvt.7.man.in @@ -124,7 +124,7 @@ .\" ======================================================================== .\" .IX Title "@@RXVT_NAME@@ 7" -.TH @@RXVT_NAME@@ 7 "2011-12-18" "@@RXVT_VERSION@@" "RXVT-UNICODE" +.TH @@RXVT_NAME@@ 7 "2012-01-18" "@@RXVT_VERSION@@" "RXVT-UNICODE" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -1095,7 +1095,10 @@ user and root): .Ve .PP One some systems you might need to set \f(CW$TERMINFO\fR to the full path of -\&\fI\f(CI$HOME\fI/.terminfo\fR for this to work. +\&\fI\f(CI$HOME\fI/.terminfo\fR for this to work. Debian systems have a broken tic +which will not be able to overwrite the existing rxvt-unicode terminfo +entry \- you might have to manually delete all traces of \fIrxvt\-unicode*\fR +from \fI/etc/terminfo\fR. .PP If you cannot or do not want to do this, then you can simply set \&\f(CW\*(C`TERM=rxvt\*(C'\fR or even \f(CW\*(C`TERM=xterm\*(C'\fR, and live with the small number of diff --git a/src/rxvtperl.xs b/src/rxvtperl.xs
--- a/src/rxvtperl.xs +++ b/src/rxvtperl.xs @@ -25,6 +25,7 @@ #include#include #undef line_t +#undef bool // perl defines it's own bool type, except with g++... what a trap #include "../config.h"
-----END OF PAGE-----