diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2024-08-25 12:43:07 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-25 12:43:07 +0100 |
| commit | 7b14c267fbdee920ad13aedad988da6d0e57a7ca (patch) | |
| tree | 8672949b53183fae13a7ec2ce565f35a01bede19 | |
| parent | 4cf1af3f7da693381333ed27c456f515530de7c0 (diff) | |
| parent | 17cc423a17cb23a74e8b0e79dcb48a95269272a0 (diff) | |
Merge pull request #4138 from z64/z64/fix-cmark
Fix binding to cmark_node_get_fence_info
| -rw-r--r-- | vendor/commonmark/cmark.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/commonmark/cmark.odin b/vendor/commonmark/cmark.odin index 50544b9bd..2fdf1387c 100644 --- a/vendor/commonmark/cmark.odin +++ b/vendor/commonmark/cmark.odin @@ -338,7 +338,7 @@ foreign lib { node_set_list_tight :: proc(node: ^Node, tight: b32) -> (success: b32) --- // Returns the info string from a fenced code block. - get_fence_info :: proc(node: ^Node) -> (fence_info: cstring) --- + node_get_fence_info :: proc(node: ^Node) -> (fence_info: cstring) --- // Sets the info string in a fenced code block, returning `true` on success and `false` on failure. node_set_fence_info :: proc(node: ^Node, fence_info: cstring) -> (success: b32) --- |