From 7600063af0938978e9b026a232999eb1ae335359 Mon Sep 17 00:00:00 2001 From: Case Duckworth Date: Thu, 10 Dec 2020 22:56:03 -0600 Subject: Change `(…) form to (list …) --- config.org | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/config.org b/config.org index 172392b..8e31095 100644 --- a/config.org +++ b/config.org @@ -4,7 +4,7 @@ #+EXPORT_FILE_NAME: README.md #+OPTIONS: toc:nil #+BANKRUPTCY_COUNT: 3 -#+Time-stamp: <2020-12-10 19:54:27 acdw> +#+Time-stamp: <2020-12-10 22:55:25 acdw> Let’s configure Emacs using Org mode, they said. It’ll be fun, they said. @@ -14,19 +14,19 @@ Let’s configure Emacs using Org mode, they said. It’ll be fun, they said. #+begin_src emacs-lisp (let ((win-downloads "c:/Users/aduckworth/Downloads")) - (dolist (path `(;; Linux - ,(expand-file-name "bin" - user-emacs-directory) - ,(expand-file-name "~/bin") - ,(expand-file-name "~/.local/bin") - ,(expand-file-name "~/Scripts") - ;; Windows - ,(expand-file-name "emacs/bin" - win-downloads) - ,(expand-file-name "PortableGit/bin" - win-downloads) - ,(expand-file-name "PortableGit/usr/bin" - win-downloads))) + (dolist (path (list ;; Linux + (expand-file-name "bin" + user-emacs-directory) + (expand-file-name "~/bin") + (expand-file-name "~/.local/bin") + (expand-file-name "~/Scripts") + ;; Windows + (expand-file-name "emacs/bin" + win-downloads) + (expand-file-name "PortableGit/bin" + win-downloads) + (expand-file-name "PortableGit/usr/bin" + win-downloads))) (when (file-exists-p path) (add-to-list 'exec-path path)))) #+end_src -- cgit 1.4.1-21-gabe81