From aa29a14d37cac3ef113c11905a96868c26d1d4d1 Mon Sep 17 00:00:00 2001 From: Marcus Kammer Date: Mon, 5 Sep 2022 08:33:49 +0200 Subject: [PATCH 1/3] Update news --- bundle/bundle--news.el | 1 + 1 file changed, 1 insertion(+) diff --git a/bundle/bundle--news.el b/bundle/bundle--news.el index 17ec5ce3..efdd52ed 100644 --- a/bundle/bundle--news.el +++ b/bundle/bundle--news.el @@ -85,6 +85,7 @@ ("https://taonaw.com/index.xml" emacs blog) ("https://www.audiotranskription.de/feed/" ux blog qda) ("https://www.phoronix.com/rss.php" linux news blog) + ("https://en.wikinews.org/w/index.php?title=Special:NewsFeed&feed=atom&categories=Published¬categories=No%20publish%7CArchived%7CAutoArchived%7Cdisputed&namespace=0&count=30&hourcount=124&ordermethod=categoryadd&stablepages=only" news) ("http://planet.sbcl.org/rss20.xml" sbcl lisp) ) elfeed-search-filter "@4-day-ago +unread")) From 227f3b63c718895eca7c1fff9dadfa0ce5a0ae5b Mon Sep 17 00:00:00 2001 From: Marcus Kammer Date: Mon, 5 Sep 2022 08:36:44 +0200 Subject: [PATCH 2/3] Update qda --- bundle/bundle--qda.el | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/bundle/bundle--qda.el b/bundle/bundle--qda.el index 8beb2905..df750ca0 100644 --- a/bundle/bundle--qda.el +++ b/bundle/bundle--qda.el @@ -1,3 +1,11 @@ +(defvar explain-codes + '((glossary (A users term)) + (job (Users task)) + (activity (Someone is acting)) + (gain (Outcome that users want to achieve)) + (pain (Undesired Outcome)) + (tool (A special kind of hard- or software which supports users activity)))) + (use-package subed :config ;; Disable automatic movement of point by default @@ -6,7 +14,7 @@ (add-hook 'subed-mode-hook 'save-place-local-mode) ;; Break lines automatically while typing (add-hook 'subed-mode-hook 'turn-on-auto-fill) - ;; Break lines at 40 characters + ;; Break lines at 40 characters (add-hook 'subed-mode-hook (lambda () (setq-local fill-column 40))) (when (eq system-type 'windows-nt) (when (directory-name-p "c:/msys64/") From 48f0c89ab402c8cca463ffb9c828993640f22963 Mon Sep 17 00:00:00 2001 From: Marcus Kammer Date: Mon, 5 Sep 2022 21:23:01 +0200 Subject: [PATCH 3/3] Check if file exists before loading slime helper --- init.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/init.el b/init.el index b1bcfeae..75621f2c 100755 --- a/init.el +++ b/init.el @@ -9,4 +9,6 @@ (load "bundle--customfile") (load "bundle--latex") (load "bundle--mk") -(load (expand-file-name "~/quicklisp/slime-helper.el")) +(let ((helper (expand-file-name "~/quicklisp/slime-helper.el"))) + (if (file-exists-p helper) + (load helper)))