In menu Tools->Options->Editor if we uncheck the "Use Tabs", the editor still insert the tab char.
Logged In: YES user_id=967168
The bug is in DbgRemoteView.cpp in function void CDbgRemoteView::AutoIndent() { : if (bAddExtraTab) { linebuff[pos] = '\t'; linebuff[pos+1] = '\0'; }
: }
see, it always insert "\t".
Logged In: YES user_id=732318
Actually, this appears to be fixed by the bug fix I posted at http://sourceforge.net/tracker/index.php? func=detail&aid=896243&group_id=43297&atid=435860
Log in to post a comment.
Logged In: YES
user_id=967168
The bug is in DbgRemoteView.cpp
in function
void CDbgRemoteView::AutoIndent()
{
:
if (bAddExtraTab)
{
linebuff[pos] = '\t';
linebuff[pos+1] = '\0';
}
:
}
see, it always insert "\t".
Logged In: YES
user_id=732318
Actually, this appears to be fixed by the bug fix I posted at
http://sourceforge.net/tracker/index.php?
func=detail&aid=896243&group_id=43297&atid=435860