summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNalin Dahyabhai <nalin@src.gnome.org>2002-08-26 14:11:53 +0000
committerNalin Dahyabhai <nalin@src.gnome.org>2002-08-26 14:11:53 +0000
commit364df6aba1a1e982d9c9e7d8c6bc3bd93af668e4 (patch)
tree4e9008010369044d73cd98f298136d56a2250eb0
parent8aacadebd47cc66a019a8ed2fee59041a6e9c0d0 (diff)
downloadvte_0_8_6.tar.gz
If GDK_USE_XFT is set, check the value of GDK_USE_XFT, not VTE_USE_XFT.vte_0_8_6
* src/vte.c: If GDK_USE_XFT is set, check the value of GDK_USE_XFT, not VTE_USE_XFT. Spotted by hp.
-rw-r--r--ChangeLog4
-rw-r--r--src/vte.c2
-rw-r--r--vte.spec5
3 files changed, 9 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 3c820a70..ade2604e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2002-08-26 nalin
+ * src/vte.c: If GDK_USE_XFT is set, check the value of GDK_USE_XFT, not
+ VTE_USE_XFT. Spotted by hp.
+
2002-08-25 nalin
* src/vte.c: Heed the reverse-video setting when painting character
cells again. Make selection and matching coordinates global, fixing
diff --git a/src/vte.c b/src/vte.c
index c059326e..899ee786 100644
--- a/src/vte.c
+++ b/src/vte.c
@@ -9644,7 +9644,7 @@ vte_terminal_init(VteTerminal *terminal, gpointer *klass)
}
if ((render_max >= VteRenderXft1) &&
(getenv("GDK_USE_XFT") != NULL)) {
- if (atol(getenv("VTE_USE_XFT")) == 0) {
+ if (atol(getenv("GDK_USE_XFT")) == 0) {
render_max = VteRenderPango;
}
}
diff --git a/vte.spec b/vte.spec
index 8251331e..ba007377 100644
--- a/vte.spec
+++ b/vte.spec
@@ -1,5 +1,5 @@
Name: vte
-Version: 0.8.5
+Version: 0.8.6
Release: 1
Summary: An experimental terminal emulator.
License: LGPL
@@ -61,6 +61,9 @@ rm $RPM_BUILD_ROOT/%{_libdir}/lib%{name}.la
%{_libdir}/pkgconfig/*
%changelog
+* Mon Aug 26 2002 Nalin Dahyabhai <nalin@redhat.com> 0.8.6-1
+- one-liner segfault bug fix
+
* Sun Aug 25 2002 Nalin Dahyabhai <nalin@redhat.com> 0.8.5-1
- fix reverse video mode, which broke during the rendering rewrite