emacs/tree: use two argument form of setq-local

Apparently the macro setq-local only takes two arguments in Emacs 26.1
This commit is contained in:
David Bremner 2023-02-21 07:49:15 -04:00
parent 09f2ad8e85
commit 48d774bbf4

View file

@ -1451,11 +1451,11 @@ notmuch-tree buffers, just set
(unless (derived-mode-p 'notmuch-tree-mode) (unless (derived-mode-p 'notmuch-tree-mode)
(user-error "notmuch-tree-outline-mode is only meaningful for notmuch trees!")) (user-error "notmuch-tree-outline-mode is only meaningful for notmuch trees!"))
(if notmuch-tree-outline-mode (if notmuch-tree-outline-mode
(progn (setq-local outline-regexp "^[^\n]+" (progn (setq-local outline-regexp "^[^\n]+")
outline-level #'notmuch-tree-outline--level) (setq-local outline-level #'notmuch-tree-outline--level)
(notmuch-tree-outline--set-visibility)) (notmuch-tree-outline--set-visibility))
(setq-local outline-regexp (default-value 'outline-regexp) (setq-local outline-regexp (default-value 'outline-regexp))
outline-level (default-value 'outline-level)))) (setq-local outline-level (default-value 'outline-level))))
;;; _ ;;; _