diff options
| author | 2023-04-15 23:14:44 -0700 | |
|---|---|---|
| committer | 2023-04-15 23:14:44 -0700 | |
| commit | bd24cb6defc34e290d4391122d8f654b423515a1 (patch) | |
| tree | d5723fdb5e1f6b17a9ceb3792e67fd2acb4eb7c9 | |
| parent | e178ca2d41661ff2a0dbe1697b77af20bae5b8d8 (diff) | |
| download | emacs-config-bd24cb6defc34e290d4391122d8f654b423515a1.tar.gz emacs-config-bd24cb6defc34e290d4391122d8f654b423515a1.zip | |
[oni-elfeed] Fix regular expression for security updates
| -rw-r--r-- | oni-elfeed.el | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/oni-elfeed.el b/oni-elfeed.el index f16ee53..0e22681 100644 --- a/oni-elfeed.el +++ b/oni-elfeed.el @@ -4,7 +4,7 @@ ;; Author: Tom Willemse <tom@ryuslash.org> ;; Keywords: local -;; Version: 2023.0411.200412 +;; Version: 2023.0412.115324 ;; Package-Requires: (elfeed olivetti) ;; This program is free software; you can redistribute it and/or modify @@ -91,7 +91,11 @@ (add-hook 'elfeed-new-entry-hook (elfeed-make-tagger :feed-url (rx "lwn.net") :entry-title (rx bos (or "[$]" - "Security updates for")) + (seq "Security" + whitespace + "updates" + whitespace + "for"))) :remove 'unread)) ;;; Mark any post not containing my resolutions as read. |
