summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorCase Duckworth2020-12-10 22:56:03 -0600
committerCase Duckworth2020-12-10 22:56:03 -0600
commit7600063af0938978e9b026a232999eb1ae335359 (patch)
tree76d1e2f0b985bef80441a06a247f32d1eb400988
parentRemove undohist-directory (diff)
downloademacs-7600063af0938978e9b026a232999eb1ae335359.tar.gz
emacs-7600063af0938978e9b026a232999eb1ae335359.zip
Change `(…) form to (list …)
-rw-r--r--config.org28
1 files 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 @@
4#+EXPORT_FILE_NAME: README.md 4#+EXPORT_FILE_NAME: README.md
5#+OPTIONS: toc:nil 5#+OPTIONS: toc:nil
6#+BANKRUPTCY_COUNT: 3 6#+BANKRUPTCY_COUNT: 3
7#+Time-stamp: <2020-12-10 19:54:27 acdw> 7#+Time-stamp: <2020-12-10 22:55:25 acdw>
8 8
9Let’s configure Emacs using Org mode, they said. It’ll be fun, they said. 9Let’s configure Emacs using Org mode, they said. It’ll be fun, they said.
10 10
@@ -14,19 +14,19 @@ Let’s configure Emacs using Org mode, they said. It’ll be fun, they said.
14 14
15 #+begin_src emacs-lisp 15 #+begin_src emacs-lisp
16 (let ((win-downloads "c:/Users/aduckworth/Downloads")) 16 (let ((win-downloads "c:/Users/aduckworth/Downloads"))
17 (dolist (path `(;; Linux 17 (dolist (path (list ;; Linux
18 ,(expand-file-name "bin" 18 (expand-file-name "bin"
19 user-emacs-directory) 19 user-emacs-directory)
20 ,(expand-file-name "~/bin") 20 (expand-file-name "~/bin")
21 ,(expand-file-name "~/.local/bin") 21 (expand-file-name "~/.local/bin")
22 ,(expand-file-name "~/Scripts") 22 (expand-file-name "~/Scripts")
23 ;; Windows 23 ;; Windows
24 ,(expand-file-name "emacs/bin" 24 (expand-file-name "emacs/bin"
25 win-downloads) 25 win-downloads)
26 ,(expand-file-name "PortableGit/bin" 26 (expand-file-name "PortableGit/bin"
27 win-downloads) 27 win-downloads)
28 ,(expand-file-name "PortableGit/usr/bin" 28 (expand-file-name "PortableGit/usr/bin"
29 win-downloads))) 29 win-downloads)))
30 (when (file-exists-p path) 30 (when (file-exists-p path)
31 (add-to-list 'exec-path path)))) 31 (add-to-list 'exec-path path))))
32 #+end_src 32 #+end_src