diff options
| author | Somelauw <Somelauw> | 2017-05-02 02:41:15 +0200 |
|---|---|---|
| committer | Somelauw <Somelauw> | 2017-05-02 02:41:15 +0200 |
| commit | a63a7350e1ee8eb42e9f2df05e3ff0366cb7bebe (patch) | |
| tree | 347d5b6f61c3a6d52ff6b33080336ac960772d90 | |
| parent | a5fccbe2812c182a253b1df18149a646958f8bf4 (diff) | |
Get rid of dash dependency
| -rw-r--r-- | evil-org.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/evil-org.el b/evil-org.el index f2c8320..64afaaf 100644 --- a/evil-org.el +++ b/evil-org.el @@ -420,8 +420,9 @@ If a prefix argument is given, links are opened in incognito mode." "A paragraph or table when in an org table." :type line (if (org-at-table-p) - (-let* ((p (point)) - ((b e) (list (org-table-begin) (org-table-end)))) + (let ((p (point)) + (b (org-table-begin)) + (e (org-table-end))) (list (min (or beg p) b) (max (or end p) e))) (evil-select-an-object 'evil-paragraph beg end type count t))) |
