Fix #7830 - Help for |? like ?|?

This commit is contained in:
masapastosa 2017-06-29 17:16:24 +02:00 committed by radare
parent bb324d3709
commit f4185a2ec9

View file

@ -2730,7 +2730,7 @@ R_API int r_core_cmd(RCore *core, const char *cstr, int log) {
}
}
if (!cstr || *cstr == '|') {
if (!cstr || (*cstr == '|' && cstr[1] != '?')) {
// raw comment syntax
goto beach; // false;
}