mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-22 07:09:54 +00:00
* lisp/image/image-converter.el: Support more ImageMagick versions (bug#39994)
* lisp/image/image-converter.el (image-converter--probe): Match a possible additional second column in some ImageMagick versions of "convert -list format".
This commit is contained in:
parent
5beb269505
commit
f8254aad14
@ -149,8 +149,9 @@ data is returned as a string."
|
||||
(when (re-search-forward "^-" nil t)
|
||||
(forward-line 1)
|
||||
;; Lines look like
|
||||
;; " WPG* r-- Word Perfect Graphics".
|
||||
(while (re-search-forward "^ *\\([A-Z0-9]+\\)\\*? +r" nil t)
|
||||
;; " WPG* r-- Word Perfect Graphics" or
|
||||
;; " WPG* WPG r-- Word Perfect Graphics".
|
||||
(while (re-search-forward "^ *\\([A-Z0-9]+\\)\\*?\\(?: +[A-Z0-9]+\\)? +r" nil t)
|
||||
(push (downcase (match-string 1)) formats)))
|
||||
(nreverse formats))))
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user