Skip to content

Commit

Permalink
picked an ascii character for the verb escape character so that it do…
Browse files Browse the repository at this point in the history
…esn't interfere with utf8
  • Loading branch information
goehle committed Aug 17, 2016
1 parent d2d636c commit 539406c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Value/String.pm
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ sub compare {
#
# Mark a string to be display verbatim
#
sub verb {shift; return "\\verb".chr(0x85).(shift).chr(0x85)}
sub verb {shift; return "\\verb".chr(0x1F).(shift).chr(0x1F)}

#
# Put normal strings into \text{} and others into \verb
Expand Down

0 comments on commit 539406c

Please sign in to comment.