*** empty log message ***
authorroot <root>
Tue, 27 Dec 2005 01:50:00 +0000 (01:50 +0000)
committerroot <root>
Tue, 27 Dec 2005 01:50:00 +0000 (01:50 +0000)
Changes
doc/rxvt.1.pod
src/screen.C

diff --git a/Changes b/Changes
index 64a9a422e4ea78ac199605cc8c43f0ab0ed5088d..452c09d26c5bf855a5adee304e3600af61169893 100644 (file)
--- a/Changes
+++ b/Changes
@@ -20,8 +20,8 @@ WISH: just for fun, do shade and tint with XRender.
           to extremely long lines and (hopefully) some segfaults.
         - iso14755 overlay position was wrong.
         - iso14755 overlay now displays rendition info, too.
-        - use unicode white space instead of hardcoded values for stripping
-          whitespace.
+        - use unicode white space class instead of hardcoded values for
+          stripping whitespace.
         - do whitespace stripping on rectangular selections.
 
 6.0  Sat Dec 24 13:58:56 CET 2005
index cac1156f17502f06738e1025b0935ea46a1dd58b..ba8df6963a99d5da39fdea803d0608d587c4de0f 100644 (file)
@@ -1081,8 +1081,10 @@ to select a word; Left triple-click to select the entire logical line
 B<tripleclickwords>.
 
 Starting a selection while pressing the B<Meta> key (or B<Meta+Ctrl> keys)
-(Compile: I<frills>) will create a rectangular selection instead of a normal
-one.
+(Compile: I<frills>) will create a rectangular selection instead of a
+normal one. In this mode, every selected row becomes its own line in the
+selection, and trailing whitespace is visually underlined and removed from
+the selection.
 
 =item B<Insertion>:
 
index e49686bcf52acf84db70eda3b3b20569eb5de42b..e876b2fea41dae3c6b348194f2de37c07541a2af 100644 (file)
@@ -2896,7 +2896,11 @@ rxvt_term::selection_make (Time tm)
 
       col = max (col, 0);
 
-      if (row == selection.end.row || selection.rect)
+      if (row == selection.end.row
+#if ENABLE_FRILLS
+          || selection.rect
+#endif
+          )
         min_it (end_col, selection.end.col);
 
       t = ROW(row).t + col;