From 509fb89d06f88364556ad04f6c7b66f395168ded Mon Sep 17 00:00:00 2001 From: Kyle Meyer Date: Wed, 23 Dec 2020 19:30:46 -0500 Subject: Drop use of dash --- lisp/km-bib.el | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'lisp/km-bib.el') diff --git a/lisp/km-bib.el b/lisp/km-bib.el index 9625ff8..6d364c0 100644 --- a/lisp/km-bib.el +++ b/lisp/km-bib.el @@ -21,7 +21,6 @@ ;;; Code: (require 'bibtex) -(require 'dash) (require 'org) (defvar km/bibtex-unimportant-title-words @@ -231,7 +230,7 @@ point. The link is opened using the settings of (defun km/copy-doi-as-kill () "Copy DOI at point to kill ring." (interactive) - (-when-let (doi (km/doi-at-point)) + (when-let ((doi (km/doi-at-point))) (kill-new (message "%s" (concat "doi:" doi))))) (defun km/doi-at-point () -- cgit v1.2.3