Skip to content

Commit c13012f

Browse files
committed
v24.44.0
1 parent c808fd7 commit c13012f

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

naylib.nimble

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Package
22

3-
version = "24.43"
3+
version = "24.44.0"
44
author = "Antonis Geralis"
55
description = "Raylib Nim wrapper"
66
license = "MIT"

tools/mangler/naylib_mangler.nim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ when defined(nimPreviewSlimSystem):
55
const NonWordChars = {'\1'..'\xff'} - IdentChars
66

77
func ident(name: string): Peg =
8+
# Match identifier when surrounded by non-word chars.
89
let wordBoundary = charSet(NonWordChars) / startAnchor() / endAnchor()
910
sequence(capture(wordBoundary), term(name), capture(wordBoundary))
1011

1112
let replacements = [
12-
# Match identifier when surrounded by non-word chars.
1313
(ident"Rectangle", "$1rlRectangle$2"),
1414
(ident"CloseWindow", "$1rlCloseWindow$2"),
1515
(ident"ShowCursor", "$1rlShowCursor$2"),

0 commit comments

Comments
 (0)