Fix #7830 - Help for |? like ?|?
This commit is contained in:
parent
bb324d3709
commit
f4185a2ec9
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue