Skip to content

Commit

Permalink
v1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
timhall committed Oct 15, 2015
1 parent 22a463a commit 9b3ecf8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions JsonConverter.bas
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Attribute VB_Name = "JsonConverter"
''
' VBA-JSON v1.0.2
' VBA-JSON v1.0.3
' (c) Tim Hall - https://github.com/VBA-tools/VBA-JSON
'
' JSON Converter for VBA
Expand Down Expand Up @@ -505,7 +505,7 @@ Private Function json_Encode(ByVal json_Text As Variant) As String

' When AscW returns a negative number, it returns the twos complement form of that number.
' To convert the twos complement notation into normal binary notation, add 0xFFF to the return result.
' https://support.microsoft.com/en-us/kb/272138
' https://support.microsoft.com/en-us/kb/272138
If json_AscCode < 0 Then
json_AscCode = json_AscCode + 65536
End If
Expand Down
Binary file modified specs/VBA-JSON - Specs.xlsm
Binary file not shown.

0 comments on commit 9b3ecf8

Please sign in to comment.