From: root Date: Thu, 30 Jun 2005 14:00:49 +0000 (+0000) Subject: *** empty log message *** X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=575e85e71fa7f9b4f8529d268ecb61a82401ccd7;p=dana%2Furxvt.git *** empty log message *** --- diff --git a/doc/etc/rxvt-unicode.termcap b/doc/etc/rxvt-unicode.termcap index 22215970..bd689e35 100644 --- a/doc/etc/rxvt-unicode.termcap +++ b/doc/etc/rxvt-unicode.termcap @@ -1,15 +1,16 @@ -# Reconstructed via infocmp from file: /etc/terminfo/r/rxvt-unicode +# Reconstructed via infocmp from file: /usr/share/terminfo/r/rxvt-unicode # (untranslatable capabilities removed to fit entry within 1023 bytes) rxvt-unicode|rxvt-unicode terminal (X Window System):\ :am:bw:eo:km:mi:ms:xn:xo:\ :co#80:it#8:li#24:lm#0:\ :AL=\E[%dL:DC=\E[%dP:DL=\E[%dM:DO=\E[%dB:IC=\E[%d@:\ :K1=\EOw:K2=\EOu:K3=\EOy:K4=\EOq:K5=\EOs:LE=\E[%dD:\ - :RI=\E[%dC:SF=\E[%dS:SR=\E[%dT:UP=\E[%dA:ae=^O:al=\E[L:\ - :as=^N:bl=^G:cd=\E[J:ce=\E[K:cl=\E[H\E[2J:cm=\E[%i%d;%dH:\ - :cr=^M:cs=\E[%i%d;%dr:ct=\E[3g:dc=\E[P:dl=\E[M:do=^J:\ - :ec=\E[%dX:ei=\E[4l:ho=\E[H:i1=\E[?47l\E=\E[?1l:ic=\E[@:\ - :im=\E[4h:is=\E[r\E[m\E[2J\E[H\E[?7h\E[?1;3;4;6l\E[4l:\ + :RI=\E[%dC:SF=\E[%dS:SR=\E[%dT:UP=\E[%dA:ae=\E(B:al=\E[L:\ + :as=\E(0:bl=^G:cd=\E[J:ce=\E[K:cl=\E[H\E[2J:\ + :cm=\E[%i%d;%dH:cr=^M:cs=\E[%i%d;%dr:ct=\E[3g:dc=\E[P:\ + :dl=\E[M:do=^J:ec=\E[%dX:ei=\E[4l:ho=\E[H:\ + :i1=\E[?47l\E=\E[?1l:ic=\E[@:im=\E[4h:\ + :is=\E[r\E[m\E[2J\E[H\E[?7h\E[?1;3;4;6l\E[4l:\ :k1=\E[11~:k2=\E[12~:k3=\E[13~:k4=\E[14~:k5=\E[15~:\ :k6=\E[17~:k7=\E[18~:k8=\E[19~:k9=\E[20~:kD=\E[3~:\ :kI=\E[2~:kN=\E[6~:kP=\E[5~:kb=\177:kd=\EOB:ke=\E[?1l\E>:\ diff --git a/doc/rxvt.1.pod b/doc/rxvt.1.pod index 621291a0..57e8f904 100644 --- a/doc/rxvt.1.pod +++ b/doc/rxvt.1.pod @@ -712,6 +712,8 @@ Specify a command pipe for vt100 printer [default I]. Use B to initiate a screen dump to the printer and B or B to include the scrollback as well. +The string will be interpreted as if typed into the shell as-is. + =item B I B: enable the scrollbar [default]; option B<-sb>. B: diff --git a/doc/rxvt.7.html b/doc/rxvt.7.html index 264a411e..2fccb1e5 100644 --- a/doc/rxvt.7.html +++ b/doc/rxvt.7.html @@ -373,6 +373,18 @@ might be forced to use a different font.

box data is correct.

+
On Solaris 9, many line-drawing characters are too wide.
+
+
+Seems to be a known bug, read +http://nixdoc.net/files/forum/about34198.html. Some people use the +following ugly workaround to get non-double-wide-characters working: +
+
+
+   #define wcwidth(x) wcwidth(x) > 1 ? 1 : wcwidth(x)
+
+

My Compose (Multi_key) key is no longer working.
@@ -465,6 +477,13 @@ system libraries once and for all, instead of forcing every app to carry complete replacements for them :)

+
I use Solaris 9 and it doesn't compile/work/etc.
+
+
+Try the diff in doc/solaris9.patch as a base. It fixes the worst +problems with wcwidth and a compile problem. +
+

How does rxvt-unicode determine the encoding to use?
Is there an option to switch encodings?
diff --git a/doc/rxvt.7.man.in b/doc/rxvt.7.man.in index e87d7aa6..32e32040 100644 --- a/doc/rxvt.7.man.in +++ b/doc/rxvt.7.man.in @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man v1.37, Pod::Parser v1.14 +.\" Automatically generated by Pod::Man v1.37, Pod::Parser v1.3 .\" .\" Standard preamble: .\" ======================================================================== @@ -129,7 +129,7 @@ .\" ======================================================================== .\" .IX Title "rxvt 7" -.TH rxvt 7 "2005-04-17" "5.3" "RXVT-UNICODE" +.TH rxvt 7 "2005-06-26" "5.6" "RXVT-UNICODE" .SH "NAME" RXVT REFERENCE \- FAQ, command sequences and other background information .SH "SYNOPSIS" @@ -408,6 +408,15 @@ might be forced to use a different font. .Sp All of this is not a problem when using X11 core fonts, as their bounding box data is correct. +.IP "On Solaris 9, many line-drawing characters are too wide." 4 +.IX Item "On Solaris 9, many line-drawing characters are too wide." +Seems to be a known bug, read +. Some people use the +following ugly workaround to get non-double-wide-characters working: +.Sp +.Vb 1 +\& #define wcwidth(x) wcwidth(x) > 1 ? 1 : wcwidth(x) +.Ve .IP "My Compose (Multi_key) key is no longer working." 4 .IX Item "My Compose (Multi_key) key is no longer working." The most common causes for this are that either your locale is not set @@ -479,6 +488,10 @@ encodings slightly different than the terminal emulator). The rxvt-unicode author insists that the right way to fix this is in the system libraries once and for all, instead of forcing every app to carry complete replacements for them :) +.IP "I use Solaris 9 and it doesn't compile/work/etc." 4 +.IX Item "I use Solaris 9 and it doesn't compile/work/etc." +Try the diff in \fIdoc/solaris9.patch\fR as a base. It fixes the worst +problems with \f(CW\*(C`wcwidth\*(C'\fR and a compile problem. .IP "How does rxvt-unicode determine the encoding to use?" 4 .IX Item "How does rxvt-unicode determine the encoding to use?" .PD 0 diff --git a/doc/rxvt.7.txt b/doc/rxvt.7.txt index 09a43193..62cce146 100644 --- a/doc/rxvt.7.txt +++ b/doc/rxvt.7.txt @@ -249,6 +249,13 @@ FREQUENTLY ASKED QUESTIONS All of this is not a problem when using X11 core fonts, as their bounding box data is correct. + On Solaris 9, many line-drawing characters are too wide. + Seems to be a known bug, read + . Some people use the + following ugly workaround to get non-double-wide-characters working: + + #define wcwidth(x) wcwidth(x) > 1 ? 1 : wcwidth(x) + My Compose (Multi_key) key is no longer working. The most common causes for this are that either your locale is not set correctly, or you specified a preeditStyle that is not supported @@ -324,6 +331,10 @@ FREQUENTLY ASKED QUESTIONS the system libraries once and for all, instead of forcing every app to carry complete replacements for them :) + I use Solaris 9 and it doesn't compile/work/etc. + Try the diff in doc/solaris9.patch as a base. It fixes the worst + problems with "wcwidth" and a compile problem. + How does rxvt-unicode determine the encoding to use? Is there an option to switch encodings? Unlike some other terminals, rxvt-unicode has no encoding switch,