Emacs 24.4、Emacs 24.5のEWWは(Emacs25は未確認)、
ウィンドウの幅に応じてテキストの幅を自動調節しています。

それはウィンドウの横幅が長いと
テキストの横幅も長くなってしまい、
読みづらくなってしまうことを意味します。

そこで、テキストの幅を70桁に固定してみました。

カスタマイズ変数がないので
nadvice.elによるアドバイス を使いました。

(defun shr-insert-document--for-eww (&rest them)
  (let ((shr-width 70)) (apply them)))
(defun eww-display-html--fill-column (&rest them)
  (advice-add 'shr-insert-document :around 'shr-insert-document--for-eww)
  (unwind-protect
      (apply them)
    (advice-remove 'shr-insert-document 'shr-insert-document--for-eww)))
(advice-add 'eww-display-html :around 'eww-display-html--fill-column)

本日もお読みいただき、ありがとうございました。参考になれば嬉しいです。