dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

commit 019c03a196c99f6a8030f7d1756dd8ce310dbcdb
parent 60bde99f2982fcdbe9201fa968c229c7bf95f6ec
Author: Alexander Balgavy <alexander.balgavy@spaceapplications.com>
Date:   Sat, 14 Oct 2023 18:50:22 +0200

emacs: bugfix when variables aren't set

Diffstat:
Memacs/config.org | 17++++++++++-------
1 file changed, 10 insertions(+), 7 deletions(-)

diff --git a/emacs/config.org b/emacs/config.org @@ -1754,15 +1754,18 @@ And a function for importing other inboxes: (interactive) (unless (string= (buffer-file-name) (file-truename za/org-life-inbox)) (user-error "You're not in your GTD inbox file.")) - (let ((mobile (file-truename za/org-life-inbox-mobile)) - (calendar (file-truename za/org-life-calendar-inbox))) + (let ((mobile (if (boundp 'za/org-life-inbox-mobile) (file-truename za/org-life-inbox-mobile) nil)) + (calendar (if (boundp 'za/org-life-calendar-inbox) (file-truename za/org-life-calendar-inbox) nil))) (save-mark-and-excursion (goto-char (point-max)) - (insert-file mobile) - (goto-char (point-max)) - (insert-file calendar) - (write-region "" nil mobile) - (write-region "" nil calendar) + (when mobile + (insert-file mobile) + (goto-char (point-max)) + (write-region "" nil mobile)) + (when calendar + (insert-file calendar) + (write-region "" nil calendar) + (goto-char (point-max))) (message "Imported other inboxes.")))) #+end_src