mirror of
https://github.com/acpica/acpica/
synced 2025-01-27 19:55:25 +03:00
fixed isalpha -> isalnum
date 2001.08.31.19.56.00; author rmoore1; state Exp;
This commit is contained in:
parent
c5661dcb08
commit
1847a5789a
@ -2,7 +2,7 @@
|
||||
/******************************************************************************
|
||||
*
|
||||
* Module Name: asconvrt - Source conversion code
|
||||
* $Revision: 1.23 $
|
||||
* $Revision: 1.24 $
|
||||
*
|
||||
*****************************************************************************/
|
||||
|
||||
@ -502,9 +502,9 @@ AsReplaceString (
|
||||
NextChar = SubString1[TargetLength];
|
||||
PrevChar = SubString1[-1];
|
||||
|
||||
if (isalpha (NextChar) ||
|
||||
if (isalnum (NextChar) ||
|
||||
(NextChar == '_') ||
|
||||
isalpha (PrevChar) ||
|
||||
isalnum (PrevChar) ||
|
||||
(PrevChar == '_'))
|
||||
{
|
||||
SubBuffer = SubString1 + 1;
|
||||
|
Loading…
x
Reference in New Issue
Block a user