File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
55
66## [ Unreleased]
77- Reworked ` Vector ` , making it iterable.
8+ - Changed ` Env::vector ` to return a ` Value ` .
89
910## [ 0.13.0] - 2020-03-11
1011- Added ` GlobalRef ` , which allows keeping Lisp values around without an ` Env ` .
Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ impl Env {
133133 Ok ( Vector :: from_value_unchecked ( value, length) )
134134 }
135135
136- pub fn vector < ' e , A : IntoLispArgs < ' e > > ( & ' e self , args : A ) -> Result < Vector > {
137- self . call ( subr:: vector, args) . and_then ( |v| v . into_rust ( ) )
136+ pub fn vector < ' e , A : IntoLispArgs < ' e > > ( & ' e self , args : A ) -> Result < Value > {
137+ self . call ( subr:: vector, args)
138138 }
139139}
You can’t perform that action at this time.
0 commit comments