Skip to content

Commit

Permalink
inih: fix prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
Chi-EEE committed Mar 2, 2024
1 parent c2d7cda commit f04f738
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/i/inih/xmake.lua
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ package("inih")
add_configs("utf_8_bom", {description = "allow a UTF-8 BOM sequence (0xEF 0xBB 0xBF) at the start of INI files", default = true, type = "boolean"})
add_configs("inline_comments", {description = "allow inline comments with the comment prefix character", default = true, type = "boolean"})
add_configs("inline_comment_prefix", {description = "allow inline comments with the comment prefix character", default = ";", type = "string"})
add_configs("start_of_line_comment_prefix", {description = "character(s) to start a comment at the beginning of a line", default = ";#'", type = "string"})
add_configs("start_of_line_comment_prefix", {description = "character(s) to start a comment at the beginning of a line", default = ";#", type = "string"})
add_configs("allow_no_value", {description = "allow name with no value", default = false, type = "boolean"})
add_configs("stop_on_first_error", {description = "stop parsing after an error", default = false, type = "boolean"})
add_configs("report_line_numbers", {description = "report line number on ini_handler callback", default = false, type = "boolean"})
Expand Down

0 comments on commit f04f738

Please sign in to comment.