You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
677 B
27 lines
677 B
1 year ago
|
From 89d92e8d17a8a790a47eae4e01e4079bcf729c35 Mon Sep 17 00:00:00 2001
|
||
|
From: tigro <tigro@msvsphere-os.ru>
|
||
|
Date: Thu, 30 Nov 2023 23:40:22 +0300
|
||
|
Subject: [PATCH] Fix invalid byte sequence in US-ASCII
|
||
|
|
||
|
---
|
||
|
tools/create-reference.rb | 3 +++
|
||
|
1 file changed, 3 insertions(+)
|
||
|
|
||
|
diff --git a/tools/create-reference.rb b/tools/create-reference.rb
|
||
|
index d0bb96c..8504590 100755
|
||
|
--- a/tools/create-reference.rb
|
||
|
+++ b/tools/create-reference.rb
|
||
|
@@ -5,6 +5,9 @@
|
||
|
# Use under a public domain license.
|
||
|
#
|
||
|
|
||
|
+Encoding.default_external = Encoding::UTF_8
|
||
|
+Encoding.default_internal = Encoding::UTF_8
|
||
|
+
|
||
|
class Argument
|
||
|
attr_accessor :name, :data_type, :doc
|
||
|
def initialize
|
||
|
--
|
||
|
2.43.0
|
||
|
|