Skip to content

Commit be45dfb

Browse files
author
Musa Al-hassy
committed
Fix: Slurp a call into an “if”
1 parent a15dc89 commit be45dfb

File tree

3 files changed

+4
-16
lines changed

3 files changed

+4
-16
lines changed

init.el

+2-2
Original file line numberDiff line numberDiff line change
@@ -1193,8 +1193,8 @@ if REMOTE is https://github.com/X/Y then LOCAL becomes ∼/Y."
11931193
;; Only run the following when we're in GUI mode;
11941194
;; i.e., don't run it in Github Actions when testing.
11951195
(if (not my/personal-machine?)
1196-
(find-file "~/Documents/notes.org")) ;; Org-journal for work
1197-
(find-file "~/Dropbox/todo.org")
1196+
(find-file "~/Documents/notes.org")
1197+
(find-file "~/Dropbox/todo.org"))
11981198
;; After startup, if Emacs is idle for 10 seconds, then open my work file;
11991199
;; which is a GPG file and so requires passphrase before other things can load.
12001200
;; (run-with-idle-timer 10 nil (lambda () (find-file "~/Desktop/work.org.gpg")))

init.org

+2-2
Original file line numberDiff line numberDiff line change
@@ -4578,8 +4578,8 @@ my to-do list and my init file, side-by-side.
45784578
;; Only run the following when we're in GUI mode;
45794579
;; i.e., don't run it in Github Actions when testing.
45804580
(if (not my/personal-machine?)
4581-
(find-file "~/Documents/notes.org")) ;; Org-journal for work
4582-
(find-file "~/Dropbox/todo.org")
4581+
(find-file "~/Documents/notes.org")
4582+
(find-file "~/Dropbox/todo.org"))
45834583
;; After startup, if Emacs is idle for 10 seconds, then open my work file;
45844584
;; which is a GPG file and so requires passphrase before other things can load.
45854585
;; (run-with-idle-timer 10 nil (lambda () (find-file "~/Desktop/work.org.gpg")))

yankpad.org

-12
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,6 @@ $0
2929
$0
3030
#+end_src
3131

32-
** s_plantuml: src for plantuml
33-
#+begin_src plantuml
34-
$0
35-
#+end_src
36-
3732
** s_emacs-lisp: src for emacs-lisp
3833
#+begin_src emacs-lisp
3934
$0
@@ -105,8 +100,6 @@ src_org[:exports code]{$1} $0
105100
src_agda2[:exports code]{$1} $0
106101
** is_any: inline source for any
107102
src_any[:exports code]{$1} $0
108-
** is_plantuml: inline source for plantuml
109-
src_plantuml[:exports code]{$1} $0
110103
** is_emacs-lisp: inline source for emacs-lisp
111104
src_emacs-lisp[:exports code]{$1} $0
112105
** is_shell: inline source for shell
@@ -148,11 +141,6 @@ $0
148141
$0
149142
#+end_example
150143

151-
** e_plantuml: example for plantuml
152-
#+begin_example plantuml
153-
$0
154-
#+end_example
155-
156144
** e_emacs-lisp: example for emacs-lisp
157145
#+begin_example emacs-lisp
158146
$0

0 commit comments

Comments
 (0)