Skip to content

Commit

Permalink
Fix #8721 - Implement /me
Browse files Browse the repository at this point in the history
  • Loading branch information
radare committed Oct 24, 2017
1 parent 42d6345 commit cd8e103
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion libr/core/cmd_search.c
Original file line number Diff line number Diff line change
Expand Up @@ -2384,7 +2384,9 @@ static int cmd_search(void *data, const char *input) {
} 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;
Expand Down

0 comments on commit cd8e103

Please sign in to comment.