mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 10:19:23 +02:00
Corrected minor bug in Assembler
This commit is contained in:
parent
6de961364f
commit
dcf22394a4
1 changed files with 1 additions and 1 deletions
|
@ -149,7 +149,7 @@ public class AssemblySentential<NT extends AssemblyNonTerminal> extends
|
|||
return Collections.singleton(new WhiteSpaceParseToken(grammar, this, ""));
|
||||
}
|
||||
if (Character.isLetterOrDigit(buffer.charAt(b)) &&
|
||||
Character.isLetterOrDigit(buffer.charAt(b - 1))) {
|
||||
(b == 0 || Character.isLetterOrDigit(buffer.charAt(b - 1)))) {
|
||||
return Collections.emptySet();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue