diff options
author | Glenn Morris <rgm@gnu.org> | 2013-05-29 20:25:29 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2013-05-29 20:25:29 -0700 |
commit | 7029bc7d31ddfe536647459594b48fb8e297fe0c (patch) | |
tree | 0b53fc7c9b48651c70cd4cb2e74ec23f61ff153e /lisp | |
parent | dd8620de6ec3fc50494f3bba4d324b0f73af4e4b (diff) | |
download | emacs-7029bc7d31ddfe536647459594b48fb8e297fe0c.tar.gz |
* gnus/spam-stat.el (spam-stat-save): No need to tweak font-lock in temp buffers
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/gnus/ChangeLog | 3 | ||||
-rw-r--r-- | lisp/gnus/spam-stat.el | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index b45abb618d8..eb12b67e733 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog @@ -1,5 +1,8 @@ 2013-05-30 Glenn Morris <rgm@gnu.org> + * spam-stat.el (spam-stat-save): + No need to tweak font-lock in temp buffers. + * shr.el (shr-put-image): Silence compiler. 2013-05-29 Glenn Morris <rgm@gnu.org> diff --git a/lisp/gnus/spam-stat.el b/lisp/gnus/spam-stat.el index d75e8198842..135bfd48e5f 100644 --- a/lisp/gnus/spam-stat.el +++ b/lisp/gnus/spam-stat.el @@ -412,8 +412,7 @@ With a prefix argument save unconditionally." (when (or force spam-stat-dirty) (let ((coding-system-for-write spam-stat-coding-system)) (with-temp-file spam-stat-file - (let ((standard-output (current-buffer)) - (font-lock-maximum-size 0)) + (let ((standard-output (current-buffer))) (insert (format ";-*- coding: %s; -*-\n" spam-stat-coding-system)) (insert (format "(setq spam-stat-ngood %d spam-stat-nbad %d spam-stat (spam-stat-to-hash-table '(" spam-stat-ngood spam-stat-nbad)) |