branch: externals/greader commit 42edf0499880cddf83b1b49dd0080317d9f23a71 Author: Michelangelo Rodriguez <michelangelo.rodrig...@gmail.com> Commit: Michelangelo Rodriguez <michelangelo.rodrig...@gmail.com>
variable `greader-continuous-modes' fixed. Now it contains simply the alist, without checking if `nov' is installed. In this way `flymake' is pacified. --- greader.el | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/greader.el b/greader.el index 6fc219329b..0f08ac78b9 100644 --- a/greader.el +++ b/greader.el @@ -1626,12 +1626,7 @@ the element, configure the `greader-enriched-tag' variable." ;; However, it will be possible to specify via the variable ;; customizable `greader-continuous-modes' functions associated with ;; particular major modes. -(defcustom greader-continuous-modes - (if (package-installed-p 'nov) - (progn - (require 'nov) - '((nov-mode . nov-next-document))) - ()) +(defcustom greader-continuous-modes '((nov-mode . nov-next-document)) "Alist mapping major modes to functions for greader-continuous guessing." :type '(alist :key-type (symbol :tag "mode-name")