repo: rxvt-unicode-sixel action: commit revision: path_from: revision_from: 8edfa8c3ced8133358f83be620188135e39b0d82: path_to: revision_to:
commit 8edfa8c3ced8133358f83be620188135e39b0d82 Author: Marc LehmannDate: Tue Dec 27 12:23:37 2005 +0000 *** empty log message *** diff --git a/Changes b/Changes
--- a/Changes
+++ b/Changes
@@ -23,6 +23,7 @@ WISH: just for fun, do shade and tint with XRender.
- use unicode white space class instead of hardcoded values for
stripping whitespace.
- do whitespace stripping on rectangular selections.
+ - slight cleanups in src/features.h.
6.0 Sat Dec 24 13:58:56 CET 2005
- make it compile without SMART_RESIZE again.
diff --git a/src/feature.h b/src/feature.h
--- a/src/feature.h +++ b/src/feature.h @@ -40,7 +40,7 @@ * NOTE: * * Most of these configuration options have not been tested within the new - * rxvt-unicode framework. Changing them might work, might have no effect, + * rxvt-unicode framework. Changing them should work, might have no effect, * destroy your disks or have any other effects. You may freely try (and * report bugs, too!), but don't _expect_ them to work. */ @@ -365,15 +365,9 @@ */ /* #define ESCZ_ANSWER "\033[?1;2C" */ -/* - * Check the current value of the window-time/icon-name and avoid - * re-setting it to the same value -- avoids unnecessary window refreshes - */ -//#define SMART_WINDOW_TITLE // currently disabled, needs to be reimplemented - /* * Allow foreground/background colour to be changed with an - * xterm escape sequence "\E]39;colour^G" -- still experimental + * xterm escape sequence "\E]39;colour^G" */ #define XTERM_COLOR_CHANGE @@ -400,7 +394,7 @@ /* * Default number of lines in the scrollback buffer */ -#define SAVELINES 64 +#define SAVELINES 1000 /* * Provide termcap/terminfo bw support (wrap backwards on cub1) diff --git a/src/main.C b/src/main.C
--- a/src/main.C
+++ b/src/main.C
@@ -946,7 +946,6 @@ rxvt_term::set_fonts ()
void rxvt_term::set_string_property (Atom prop, const char *str, int len)
{
- // TODO: SMART_WINDOW_TITLE
XChangeProperty (display->display, parent[0],
prop, XA_STRING, 8, PropModeReplace,
(const unsigned char *)str, len >= 0 ? len : strlen (str));
@@ -954,7 +953,6 @@ void rxvt_term::set_string_property (Atom prop, const char *str, int len)
void rxvt_term::set_utf8_property (Atom prop, const char *str, int len)
{
- // TODO: SMART_WINDOW_TITLE
wchar_t *ws = rxvt_mbstowcs (str, len);
char *s = rxvt_wcstoutf8 (ws);
diff --git a/src/version.h b/src/version.h
--- a/src/version.h +++ b/src/version.h @@ -1,3 +1,3 @@ // VERSION _must_ be \d.\d+ -#define VERSION "6.0" -#define DATE "2005-12-24" +#define VERSION "6.1" +#define DATE "2005-12-27"
-----END OF PAGE-----