Browse Source

added check for free variable in disabled package on windows

master
Marc Pohling 4 years ago
parent
commit
7f64ee6363
1 changed files with 5 additions and 3 deletions
  1. 8
      init.org

8
init.org

@ -624,8 +624,11 @@ Vorerst deaktiviert, Nutzen evtl. nicht vorhanden
:ensure t :ensure t
:defer t :defer t
:config :config
(setq org-journal-dir MY--PATH_ORG_JOURNAl
org-journal-enable-agenda-integration t))
;; feels hacky, but this way compiler error "assignment to free variable" disappears
(when (and (boundp 'org-journal-dir)
(boundp 'org-journal-enable-agenda-integration))
(setq org-journal-dir MY--PATH_ORG_JOURNAl
org-journal-enable-agenda-integration t)))
#+END_SRC #+END_SRC
* Programming * Programming
@ -636,7 +639,6 @@ Vorerst deaktiviert, Nutzen evtl. nicht vorhanden
Little crash course in magit: Little crash course in magit:
- magit-init to init a git project - magit-init to init a git project
- magit-status (C-x g) to call the status window - magit-status (C-x g) to call the status window
In status buffer: In status buffer:
- s stage files - s stage files
- u unstage files - u unstage files

Loading…
Cancel
Save