Skip to content

Commit

Permalink
Fix radareorg#23582 - abaj is back to life
Browse files Browse the repository at this point in the history
  • Loading branch information
radare authored and trufae committed Nov 2, 2024
1 parent 9249403 commit c68421c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libr/core/cmd_anal.inc.c
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ static RCoreHelpMessage help_msg_ab = {
"ab-", "[addr]", "delete basic block at given address",
"ab.", "", "same as: ab $$",
"abi", "[?]", "alias for afbi",
"aba", " [addr]", "analyze esil accesses in basic block (see aea?)",
"aba", "[j] [addr]", "analyze esil accesses in basic block (see aea?)",
"abb", " [length]", "analyze N bytes and extract basic blocks",
"abc", "[-] [color]", "change color of the current basic block (same as afbc, abc- to unset)",
"abe", " [esil-expr]", "assign esil expression to basic block (see: aeb, dre, afbd)",
Expand Down Expand Up @@ -15044,7 +15044,7 @@ static void cmd_ab(RCore *core, const char *input) {
r_core_cmd_call (core, "ab $$");
break;
case 'a': // "aba"
r_core_cmdf (core, "aeab%s", input);
r_core_cmdf (core, "aeab%s", input + 1);
break;
case 'b': // "abb"
core_anal_bbs (core, input + 1);
Expand Down

0 comments on commit c68421c

Please sign in to comment.