# HG changeset patch # User Alexander Simon # Date 1450200733 -10800 # Tue Dec 15 20:32:13 2015 +0300 # Branch release81 # Node ID 8c2944bc3f3cc2c9e01939bea92670076213fdd0 # Parent 7d396ceb43cb253482bb29fcc21c46273e84e334 fixed Bug #257114 disassmbly window does not show tabs correctly diff --git a/cnd.debugger.gdb2/src/org/netbeans/modules/cnd/debugger/gdb2/GdbDisassembly.java b/cnd.debugger.gdb2/src/org/netbeans/modules/cnd/debugger/gdb2/GdbDisassembly.java --- a/cnd.debugger.gdb2/src/org/netbeans/modules/cnd/debugger/gdb2/GdbDisassembly.java +++ b/cnd.debugger.gdb2/src/org/netbeans/modules/cnd/debugger/gdb2/GdbDisassembly.java @@ -422,7 +422,11 @@ //do nothing } this.offset = tmpOffset; - this.instruction = readValue(INSTR_HEADER, msg, pos); + String inst = readValue(INSTR_HEADER, msg, pos); + if (inst.contains("\\t")) { //NOI18N + inst = inst.replace("\\t", "\t"); //NOI18N + } + this.instruction = inst; } @Override