mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-06 13:37:07 +00:00
Fix #8721 - Implement /me
This commit is contained in:
parent
42d6345220
commit
cd8e1037cd
@ -2384,7 +2384,9 @@ reread:
|
||||
} break;
|
||||
case 'm': // "/m"
|
||||
dosearch = false;
|
||||
if (input[1] == ' ' || input[1] == '\0') {
|
||||
if (input[1] == 'e') { // "/me"
|
||||
r_cons_printf ("* r2 thinks%s\n", input + 2);
|
||||
} else if (input[1] == ' ' || input[1] == '\0') {
|
||||
int ret;
|
||||
const char *file = input[1]? input + 2: NULL;
|
||||
ut64 addr = search_itv.addr;
|
||||
|
Loading…
x
Reference in New Issue
Block a user