diff options
| author | Lars Ingebrigtsen | 2018-04-15 00:17:28 +0200 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2018-04-15 00:17:28 +0200 |
| commit | 25487b921b9a24eeed0c1a4e9bcc5043845f0f20 (patch) | |
| tree | e0c81b9cd015917275a03fe415c094949dae1f6b | |
| parent | 86bbde2808f0f555805cd4a6007acac547c0d4df (diff) | |
| download | emacs-25487b921b9a24eeed0c1a4e9bcc5043845f0f20.tar.gz emacs-25487b921b9a24eeed0c1a4e9bcc5043845f0f20.zip | |
Remove call to string-as-unibyte from nnmail
* lisp/gnus/nnmail.el (nnmail-parse-active): Remove call to
string-as-unibyte; the alist before and after the change are
`equal' to each other, so it should presumably have no impact.
| -rw-r--r-- | lisp/gnus/nnmail.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/gnus/nnmail.el b/lisp/gnus/nnmail.el index aa909cc9797..249bd65a9d7 100644 --- a/lisp/gnus/nnmail.el +++ b/lisp/gnus/nnmail.el | |||
| @@ -666,7 +666,7 @@ nn*-request-list should have been called before calling this function." | |||
| 666 | (setq group (symbol-name group))) | 666 | (setq group (symbol-name group))) |
| 667 | (if (and (numberp (setq max (read buffer))) | 667 | (if (and (numberp (setq max (read buffer))) |
| 668 | (numberp (setq min (read buffer)))) | 668 | (numberp (setq min (read buffer)))) |
| 669 | (push (list (string-as-unibyte group) (cons min max)) | 669 | (push (list group (cons min max)) |
| 670 | group-assoc))) | 670 | group-assoc))) |
| 671 | (error nil)) | 671 | (error nil)) |
| 672 | (widen) | 672 | (widen) |