repo: rxvt-unicode-sixel action: commit revision: path_from: revision_from: 1e0cde930e9ad6a0480ecce5883fdcc97ebaf543: path_to: revision_to:
commit 1e0cde930e9ad6a0480ecce5883fdcc97ebaf543 Author: Marc LehmannDate: Thu Jan 12 01:38:37 2006 +0000 *** empty log message *** diff --git a/Changes b/Changes
--- a/Changes
+++ b/Changes
@@ -15,6 +15,8 @@ WISH: support tex fonts
TODO: run external commands more sytematically (using $self->env etc.)
TODO: document searchable-scorllback hotkey
TODO: double-click and right-extend
+TODO: change scrollback to use cursor movements
+TODO: middle-click conflicts with menu use, !Ctrl
- added sections for DISTRIBUTION MAINTAINERS and about
SETUID/SETGID to the FAQ.
- selection, searchable-scrollback, selection-popup and
@@ -34,8 +36,7 @@ TODO: double-click and right-extend
- free one of the cursors, fixes a small memory leak.
- built-in (as opposed to terminfos) visual bell was broken/too fast.
- applied minor cleanups by Ladislav Michnovic.
- - applied better configure support for openpty and other pty stuff
- (Emanuele Giaquinta).
+ - applied pty handling cleanups and improvements (Emanuele Giaquinta).
- mark-urls launch-on-click by jepler.
- removed "small" resource parsing function, as it wasn't really
compatible, and not really small either.
diff --git a/src/rxvtperl.h b/src/rxvtperl.h
--- a/src/rxvtperl.h
+++ b/src/rxvtperl.h
@@ -38,7 +38,6 @@ struct rxvt_perl_interp
{
char **perl_environ;
- rxvt_perl_interp ();
~rxvt_perl_interp ();
bool should_invoke[HOOK_NUM];
diff --git a/src/rxvtperl.xs b/src/rxvtperl.xs
--- a/src/rxvtperl.xs
+++ b/src/rxvtperl.xs
@@ -395,10 +395,6 @@ struct rxvt_perl_interp rxvt_perl;
static PerlInterpreter *perl;
-rxvt_perl_interp::rxvt_perl_interp ()
-{
-}
-
rxvt_perl_interp::~rxvt_perl_interp ()
{
if (perl)
diff --git a/src/urxvt.pm b/src/urxvt.pm
--- a/src/urxvt.pm +++ b/src/urxvt.pm @@ -87,8 +87,8 @@ Displays a digital clock using the built-in overlay. =item mark-urls Uses per-line display filtering (C) to underline urls and -make them clickable. When clicked, the program specified in the resource -C (default C ) will be started. +make them clickable. When middle-clicked, the program specified in the +resource C (default C ) will be started. =item block-graphics-to-ascii
-----END OF PAGE-----