From 5561ea0ea9b63dc7950ee2fee99c73ec51e42c88 Mon Sep 17 00:00:00 2001 From: Leon Rische Date: Wed, 15 Jan 2020 16:30:58 +0100 Subject: Remove dash functions / macros --- org-fc-awk.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'org-fc-awk.el') diff --git a/org-fc-awk.el b/org-fc-awk.el index d579fab..d3ca453 100644 --- a/org-fc-awk.el +++ b/org-fc-awk.el @@ -91,10 +91,10 @@ parsing each element with its header specification." (defun org-fc-tsv-parse (headers input) "Parse a tsv INPUT into a plist, give a list of HEADERS." - (let* ((lines (split-string input "\n" t))) - (--map (org-fc-tsv--parse-row - headers - (split-string it "\t")) lines))) + (mapcar + (lambda (row) (org-fc-tsv--parse-row headers (split-string row "\t"))) + (split-string input "\n" t))) + ;;;; TSV Headers (defvar org-fc-awk-card-headers -- cgit v1.2.3