diff options
Diffstat (limited to 'piem-lei.el')
-rw-r--r-- | piem-lei.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/piem-lei.el b/piem-lei.el index dedaee2..1c232da 100644 --- a/piem-lei.el +++ b/piem-lei.el @@ -699,6 +699,11 @@ that line." (children (piem-lei-msg-children msg)) (depth (1+ (or (cdr (assoc (piem-lei-msg-parent msg) depths)) -1)))) + (when (and (equal depth 0) + (not (bobp))) + ;; Add newline between threads to make different threads + ;; easier to distinguish. + (insert ?\n)) (when children (setq msgs (append children msgs))) (push (cons msg depth) depths) |