Another minor change to string handling

This commit is contained in:
sloum 2022-10-17 15:10:24 -07:00
parent de2f1532c7
commit 8541bc66f8
2 changed files with 2 additions and 2 deletions

View File

@ -720,7 +720,7 @@ func apply(procedure expression, args []expression, name expression) (value expr
func stringUnescapeEval(exp expression) expression {
switch e := exp.(type) {
case string:
return unescapeString(e)
return e
case []expression:
values := make([]expression, len(e))
for i, x := range e {

View File

@ -18,7 +18,7 @@ import (
ln "github.com/peterh/liner"
)
const version = "1.2.6"
const version = "1.2.7"
const globalLibPath = "/usr/local/lib/slope/modules/"