Drop unnecessary use of anonymous function

This commit is contained in:
Tim Pope 2012-12-09 12:31:56 -05:00
parent b3b3ce4bca
commit cb1ebfbc5b
1 changed files with 1 additions and 1 deletions

View File

@ -365,7 +365,7 @@ function! foreplay#evalparse(expr) abort
\ '(symbol ((fn *vimify [x]' .
\ ' (cond' .
\ ' (map? x) (str "{" (apply str (interpose ", " (map (fn [[k v]] (str (*vimify k) ": " (*vimify v))) x))) "}")' .
\ ' (coll? x) (str "[" (apply str (interpose ", " (map #(*vimify %) x))) "]")' .
\ ' (coll? x) (str "[" (apply str (interpose ", " (map *vimify x))) "]")' .
\ ' (number? x) (pr-str x)' .
\ ' (keyword? x) (pr-str (name x))' .
\ ' :else (pr-str (str x)))) '.a:expr.'))',