Skip to content

Commit 73e7624

Browse files
authored
Fix OBOE in _Command_IsPrefix.
1 parent 104fe5f commit 73e7624

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

YSI_Visual/y_commands/y_commands_impl.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ P:D(bool:_Command_IsActive(command));
310310
*//*------------------------------------------------------------------------**/
311311

312312
#if defined Y_COMMANDS_USE_CHARS
313-
#define _Command_IsPrefix(%0) (IS_IN_RANGE((%0), 0, 128 + 1) && Bit_Get(YSI_g_sPrefixes, (%0)))
313+
#define _Command_IsPrefix(%0) (IS_IN_RANGE((%0), 0, 128) && Bit_Get(YSI_g_sPrefixes, (%0)))
314314
#else
315315
#define _Command_IsPrefix(%0) ((%0) == '/')
316316
#endif

0 commit comments

Comments
 (0)