rizinorg / rz-ghidra

Deep ghidra decompiler and sleigh disassembler integration for rizin

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Make less changes to the ghidra source code

sakiodre opened this issue · comments

The commit #fd21d19 changes the OpToken PrintC::comma directly in "printc.cc", but it's possible to modify this in the constructor of RizinPrintC:

RizinPrintC::RizinPrintC(Architecture *g, const string &nm)
	: PrintC(g, nm)
{
	PrintC::comma.print1 = ", ";
}

Also, doesn't that commit conflict with option_space_after_comma in #018d130 ?

thanks for reaching out @sakiodre :)
Would you mind submitting a PR with your suggested improvement?