X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=emacs%2Fnotmuch-tree.el;h=7fa403fc481a7ea96978c06b231dbd064c2e8112;hb=c27326650394c14df4384e9eac0ab63c86fdc044;hp=14775d59ce4783b91229dfbe72c536aab045661b;hpb=f63d14a8c12ad76024d2865c0223a06f6f4bb372;p=notmuch diff --git a/emacs/notmuch-tree.el b/emacs/notmuch-tree.el index 14775d59..7fa403fc 100644 --- a/emacs/notmuch-tree.el +++ b/emacs/notmuch-tree.el @@ -200,7 +200,8 @@ Note that the author string should not contain whitespace (defface notmuch-tree-match-tree-face nil - "Face used in tree mode for the thread tree block graphics in messages matching the query." + "Face used in tree mode for the thread tree block graphics in +messages matching the query." :group 'notmuch-tree :group 'notmuch-faces) @@ -239,7 +240,8 @@ Note that the author string should not contain whitespace (defface notmuch-tree-no-match-tree-face nil - "Face used in tree mode for the thread tree block graphics in messages matching the query." + "Face used in tree mode for the thread tree block graphics in +messages matching the query." :group 'notmuch-tree :group 'notmuch-faces) @@ -1047,7 +1049,8 @@ message together with all its descendents." (notmuch-tree-insert-thread replies (1+ depth) tree-status))) (defun notmuch-tree-insert-thread (thread depth tree-status) - "Insert the collection of sibling sub-threads THREAD at depth DEPTH in the current forest." + "Insert the collection of sibling sub-threads THREAD at depth +DEPTH in the current forest." (let ((n (length thread))) (cl-loop for tree in thread for count from 1 to n @@ -1451,11 +1454,11 @@ notmuch-tree buffers, just set (unless (derived-mode-p 'notmuch-tree-mode) (user-error "notmuch-tree-outline-mode is only meaningful for notmuch trees!")) (if notmuch-tree-outline-mode - (progn (setq-local outline-regexp "^[^\n]+" - outline-level #'notmuch-tree-outline--level) + (progn (setq-local outline-regexp "^[^\n]+") + (setq-local outline-level #'notmuch-tree-outline--level) (notmuch-tree-outline--set-visibility)) - (setq-local outline-regexp (default-value 'outline-regexp) - outline-level (default-value 'outline-level)))) + (setq-local outline-regexp (default-value 'outline-regexp)) + (setq-local outline-level (default-value 'outline-level)))) ;;; _