diff options
author | jao <jao@gnu.org> | 2022-08-04 01:08:23 +0100 |
---|---|---|
committer | jao <jao@gnu.org> | 2022-08-04 01:08:23 +0100 |
commit | f7446555b2410a03b35c1c343574c411676bb785 (patch) | |
tree | 176575b4d60391a12bf82fdd4960a85421d0e9a3 | |
parent | 2b778af1a7f07620ae1e277ee7fb2d588b905b48 (diff) | |
download | elibs-f7446555b2410a03b35c1c343574c411676bb785.tar.gz elibs-f7446555b2410a03b35c1c343574c411676bb785.tar.bz2 |
html message widths settings for emacs 28
-rw-r--r-- | custom/jao-custom-email.el | 4 | ||||
-rw-r--r-- | custom/jao-custom-gnus.el | 2 |
2 files changed, 2 insertions, 4 deletions
diff --git a/custom/jao-custom-email.el b/custom/jao-custom-email.el index b7f7e69..a7fc8e0 100644 --- a/custom/jao-custom-email.el +++ b/custom/jao-custom-email.el @@ -227,9 +227,7 @@ (mm-shr handle)))))) (defun jao-shr-html-renderer (handle) - (let (;; (shr-use-fonts t) - ;; (shr-use-colors t) - (fill-column 100) + (let ((fill-column nil) (shr-width fill-column)) (mm-shr handle))) diff --git a/custom/jao-custom-gnus.el b/custom/jao-custom-gnus.el index 2d1b691..ddc2606 100644 --- a/custom/jao-custom-gnus.el +++ b/custom/jao-custom-gnus.el @@ -609,7 +609,7 @@ (setq gnus-gcc-mark-as-read t) (setq gnus-treat-display-smileys nil) (setq gnus-treat-fill-long-lines nil) -(setq gnus-treat-fill-article nil) +(setq gnus-treat-fill-article 120) (setq gnus-treat-fold-headers nil) (setq gnus-treat-strip-leading-blank-lines t) (setq gnus-article-auto-eval-lisp-snippets nil) |