diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2007-01-26 21:24:24 +0000 |
---|---|---|
committer | Chris Wilson <cpwilson@src.gnome.org> | 2007-01-26 21:24:24 +0000 |
commit | 124a489f0781fb0b7eb96cf814aa3b5f68db318c (patch) | |
tree | 44d3574b517fb04dfbb1c8c543e12d8e80c929d1 /src/trie.c | |
parent | f3d61703c42e8f98f9011fbaa40f3d149a0cc1d4 (diff) |
s/_VTE_DEBUG_ON/_VTE_DEBUG_IF/ and don't include the code block inside the
2007-01-26 Chris Wilson <chris@chris-wilson.co.uk>
s/_VTE_DEBUG_ON/_VTE_DEBUG_IF/ and don't include
the code block inside the macro.
* src/debug.h:
* src/iso2022.c: (process_control), (_vte_iso2022_process):
* src/keymap.c: (_vte_keymap_map):
* src/matcher.c: (_vte_matcher_init):
* src/pty.c: (_vte_pty_run_on_pty):
* src/table.c: (_vte_table_addi), (_vte_table_matchi),
(_vte_table_extract_numbers), (_vte_table_match):
* src/trie.c: (_vte_trie_addx):
* src/vte.c: (vte_terminal_match_check_internal),
(vte_terminal_match_check), (vte_terminal_handle_sequence),
(vte_terminal_catch_child_exited), (vte_terminal_process_incoming),
(vte_terminal_io_write), (vte_terminal_send),
(vte_terminal_key_press), (vte_terminal_copy_cb),
(vte_terminal_set_font_full), (vte_terminal_realize),
(vte_terminal_paint), (vte_terminal_scroll):
* src/vteapp.c: (main):
* src/vtebg.c: (vte_bg_root_pixmap):
svn path=/trunk/; revision=1551
Diffstat (limited to 'src/trie.c')
-rw-r--r-- | src/trie.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -410,9 +410,9 @@ _vte_trie_addx(struct _vte_trie *trie, gunichar *pattern, gsize length, trie->quark = g_quark_from_string(result); trie->result = g_quark_to_string(trie->quark); } else { - _VTE_DEBUG_ON(VTE_DEBUG_PARSE, + _VTE_DEBUG_IF(VTE_DEBUG_PARSE) g_warning(_("Duplicate (%s/%s)!"), - result, trie->result)); + result, trie->result); } return; } |