diff options
Diffstat (limited to 'lisp/gnus')
| -rw-r--r-- | lisp/gnus/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/gnus/smime.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 5be5dd8cc56..4d40050acac 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog @@ -1,3 +1,8 @@ +2012-07-13 Chong Yidong <cyd@gnu.org> + + * smime.el (smime-certificate-info): Set buffer-read-only directly, + instead of calling toggle-read-only with a (bogus) argument. + 2012-07-09 Tassilo Horn <tassilo@member.fsf.org> * gnus-sum.el (gnus-summary-limit-to-author): Use default value instead diff --git a/lisp/gnus/smime.el b/lisp/gnus/smime.el index 73f4970fcd4..7492142947e 100644 --- a/lisp/gnus/smime.el +++ b/lisp/gnus/smime.el @@ -678,7 +678,7 @@ The following commands are available: "x509" "-in" (expand-file-name certfile) "-text") (fundamental-mode) (set-buffer-modified-p nil) - (toggle-read-only t) + (setq buffer-read-only t) (goto-char (point-min)))) (defun smime-draw-buffer () |
