projects
/
clawsker.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8ad3424
)
Fix reading UTF-8 values
author
Ricardo Mones
<ricardo@mones.org>
Tue, 18 Mar 2014 21:55:09 +0000
(22:55 +0100)
committer
Ricardo Mones
<ricardo@mones.org>
Tue, 18 Mar 2014 21:55:09 +0000
(22:55 +0100)
clawsker
patch
|
blob
|
history
diff --git
a/clawsker
b/clawsker
index f15340f9a8a4263c37307e2b589f793f36ab7c88..2568931561fc5af4356bbe79d304a60b954c6ae8 100755
(executable)
--- a/
clawsker
+++ b/
clawsker
@@
-1967,7
+1967,7
@@
sub load_preferences() {
while (<RCF>) {
chomp;
if (/^([8a-z_]+)=(.*)$/) {
- $PREFS{$1} =
"$2"
;
+ $PREFS{$1} =
decode('UTF-8', $2)
;
}
}
close (RCF);