summaryrefslogtreecommitdiff
path: root/src/trie.c
diff options
context:
space:
mode:
authorNalin Dahyabhai <nalin@src.gnome.org>2002-04-25 03:54:03 +0000
committerNalin Dahyabhai <nalin@src.gnome.org>2002-04-25 03:54:03 +0000
commitf4e3bb67144b3c2c7a5987a6a091a3140ef55c85 (patch)
tree2b9c89de17c26ea0d924496041f21b5752481eff /src/trie.c
parentb8f6f28089d5e98516b041de3aeebf34982bcb1a (diff)
Demote some debug messages to being trie-specific debug messages. Declare
* src/trie.c: Demote some debug messages to being trie-specific debug messages. * src/vte.h: Declare vte_terminal_set_core_font() for non-Xft use. * src/vte.c: Adjust idle priorities to make the terminal be more responsive; fix a double-free that corrupted the heap on core font loads; rework some pixbuf handling; revert a patch for profterm crackiness that's gone now.
Diffstat (limited to 'src/trie.c')
-rw-r--r--src/trie.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/trie.c b/src/trie.c
index ed55ebd..424eac2 100644
--- a/src/trie.c
+++ b/src/trie.c
@@ -270,7 +270,7 @@ char_class_string_extract(const wchar_t *s, size_t length,
len = xwcsnlen(s, length);
ret = g_malloc0((len + 1) * sizeof(wchar_t));
wcsncpy(ret, s, len);
-#ifdef VTE_DEBUG
+#ifdef VTE_DEBUG_TRIE
fprintf(stderr, "Extracting string `%ls'.\n", ret);
#endif
memset(&value, 0, sizeof(value));