fixed a segfault bug in index()/rindex() function handler which treated a byte character as a byte string.

enhanced code to handle BOB better
This commit is contained in:
2025-07-10 23:12:47 +09:00
parent 45a22eb5a4
commit 955210800e
13 changed files with 296 additions and 32 deletions

View File

@ -503,11 +503,12 @@ However, some of these words not beginning with `@` can be used as normal names
## Values
- uninitialized value
- character
- character - 'C'
- byte character - @b'B'
- integer
- floating-point number
- string
- byte string
- string - "string"
- byte string - @b"byte string"
- array - light-weight array with numeric index only
- map - conventional AWK array
- function