diff options
author | Stefan Kangas <stefan@marxist.se> | 2022-07-09 12:01:43 +0200 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2022-07-09 12:33:14 +0200 |
commit | d40cb5243023fe6f431ee0a629626fb8e90f5300 (patch) | |
tree | 1c2fa5852f8fe55bd9fe6facdf8b7a466ab354bd /lisp | |
parent | 76ca5f5eceda6c78f209588da0893bab5b42165c (diff) | |
download | emacs-d40cb5243023fe6f431ee0a629626fb8e90f5300.tar.gz |
* lisp/mh-e/mh-mime.el (mh-small-show-buffer-p): Double value.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/mh-e/mh-mime.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mh-e/mh-mime.el b/lisp/mh-e/mh-mime.el index 144eb9b3f96..b93f7d8c412 100644 --- a/lisp/mh-e/mh-mime.el +++ b/lisp/mh-e/mh-mime.el @@ -1141,7 +1141,7 @@ this ;-)" "Check if show buffer is small. This is used to decide if smileys and graphical emphasis should be displayed." - (>= 32000 (buffer-size))) + (>= 64000 (buffer-size))) |