mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-21 07:52:21 -04:00
18 lines
378 B
Diff
18 lines
378 B
Diff
changeset: 158:2db1dbb75557
|
|
user: John Donoghue
|
|
date: Thu Jan 09 16:38:52 2020 -0500
|
|
summary: * inst/base64encode.m: dont use depreciated toascii
|
|
|
|
--- a/inst/base64encode.m
|
|
+++ b/inst/base64encode.m
|
|
@@ -46,7 +46,7 @@
|
|
endif
|
|
|
|
if (ischar (X))
|
|
- X = toascii (X);
|
|
+ X = double (X);
|
|
endif
|
|
|
|
if (any (X != fix (X)) || any (X < 0 | X > 255))
|
|
|