diff options
author | Katsumi Yamaoka <yamaoka@jpl.org> | 2010-09-22 06:01:22 +0000 |
---|---|---|
committer | Katsumi Yamaoka <yamaoka@jpl.org> | 2010-09-22 06:01:22 +0000 |
commit | 4def29e7d611ccb7bf32df728e71c6cc4f2f92a1 (patch) | |
tree | 2266e48afbb41e0f7157a549f9a19b6b07b106ba /lisp/gnus/mailcap.el | |
parent | 1bf68d5367c15a146157ad36f5b81f3801a32b3d (diff) | |
download | emacs-4def29e7d611ccb7bf32df728e71c6cc4f2f92a1.tar.gz emacs-4def29e7d611ccb7bf32df728e71c6cc4f2f92a1.tar.bz2 emacs-4def29e7d611ccb7bf32df728e71c6cc4f2f92a1.zip |
Remove Emacs 21 stuff.
mailcap.el (mailcap-parse-mailcap, mailcap-parse-mimetypes)
mm-util.el (mm-decompress-buffer)
nnir.el (nnir-run-find-grep)
pop3.el (pop3-list): Use 3rd arg of split-string.
Diffstat (limited to 'lisp/gnus/mailcap.el')
-rw-r--r-- | lisp/gnus/mailcap.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/gnus/mailcap.el b/lisp/gnus/mailcap.el index 71ffd1225b5..524928586fc 100644 --- a/lisp/gnus/mailcap.el +++ b/lisp/gnus/mailcap.el @@ -423,7 +423,7 @@ MAILCAPS if set; otherwise (on Unix) use the path from RFC 1524, plus "/usr/local/etc/mailcap")))) (let ((fnames (reverse (if (stringp path) - (delete "" (split-string path path-separator)) + (split-string path path-separator t) path))) fname) (while fnames @@ -941,7 +941,7 @@ If FORCE, re-parse even if already parsed." "/usr/local/etc/mime-types" "/usr/local/www/conf/mime-types")))) (let ((fnames (reverse (if (stringp path) - (delete "" (split-string path path-separator)) + (split-string path path-separator t) path))) fname) (while fnames |