Emacs: Read mpeg with default player instead of mpeg_play

master
Pierre Neidhardt 2019-04-18 21:29:35 +02:00
parent b60fd5eec5
commit f201b0f498
1 changed files with 6 additions and 1 deletions

View File

@ -181,7 +181,12 @@
(".ogv" . "video/ogg")
(".wmv" . "video/x-ms-wmv")
(".mkv" . "video/x-matroska")))
(add-to-list 'mailcap-mime-extensions ext)))
(add-to-list 'mailcap-mime-extensions ext))
(when (version<= "26.2" emacs-version)
(assoc-delete-all
"mpeg"
(alist-get "video" mailcap-mime-data
nil nil #'string-equal))))
;;; Default ispell dictionary. If not set, Emacs uses the current locale.
(setq ispell-dictionary "english")