comparison lisp/image.el @ 37035:b7bd53c4820a

(image-type-regexps): Change type for PS files to `postscript'.
author Gerd Moellmann <gerd@gnu.org>
date Wed, 28 Mar 2001 12:39:45 +0000
parents 5ae7af279df7
children 00a56d6da660
comparison
equal deleted inserted replaced
37034:9a09663f91ad 37035:b7bd53c4820a
1 ;;; image.el --- image API 1 ;;; image.el --- image API
2 2
3 ;; Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc. 3 ;; Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
4 ;; Keywords: multimedia 4 ;; Keywords: multimedia
5 5
6 ;; This file is part of GNU Emacs. 6 ;; This file is part of GNU Emacs.
7 7
8 ;; GNU Emacs is free software; you can redistribute it and/or modify 8 ;; GNU Emacs is free software; you can redistribute it and/or modify
36 ("^GIF8" . gif) 36 ("^GIF8" . gif)
37 ("JFIF" . jpeg) 37 ("JFIF" . jpeg)
38 ("^\211PNG\r\n" . png) 38 ("^\211PNG\r\n" . png)
39 ("^#define" . xbm) 39 ("^#define" . xbm)
40 ("^\\(MM\0\\*\\)\\|\\(II\\*\0\\)" . tiff) 40 ("^\\(MM\0\\*\\)\\|\\(II\\*\0\\)" . tiff)
41 ("^%!PS" . ghostscript)) 41 ("^%!PS" . postscript))
42 "Alist of (REGEXP . IMAGE-TYPE) pairs used to auto-detect image types. 42 "Alist of (REGEXP . IMAGE-TYPE) pairs used to auto-detect image types.
43 When the first bytes of an image file match REGEXP, it is assumed to 43 When the first bytes of an image file match REGEXP, it is assumed to
44 be of image type IMAGE-TYPE.") 44 be of image type IMAGE-TYPE.")
45 45
46 46