diff --git a/config.org b/config.org index 3b954f7..7053ea7 100644 --- a/config.org +++ b/config.org @@ -82,7 +82,7 @@ As a sibling to the former, the variable ~%local-swap~ does the same with the sw (let* ((os-list (read port)) (os-list-length (length os-list))) (eval - (cdr + (cadr (list-ref os-list (- os-list-length 2))) (interaction-environment)))))) diff --git a/config.scm b/config.scm index de18800..2d5da45 100644 --- a/config.scm +++ b/config.scm @@ -32,7 +32,7 @@ (let* ((os-list (read port)) (os-list-length (length os-list))) (eval - (cdr + (cadr (list-ref os-list (- os-list-length 2))) (interaction-environment))))))