summaryrefslogtreecommitdiff
path: root/lisp/image.el
diff options
context:
space:
mode:
authorGerd Moellmann <gerd@gnu.org>2001-03-28 12:39:45 +0000
committerGerd Moellmann <gerd@gnu.org>2001-03-28 12:39:45 +0000
commit2b8f2f464dc55199227c9fe15b2ec70a9469d118 (patch)
tree5803de48221303f8dde1837d3f610d56ed6aedd8 /lisp/image.el
parent44655e779646093e767e78a2f20628fa7afe09ba (diff)
downloademacs-2b8f2f464dc55199227c9fe15b2ec70a9469d118.tar.gz
(image-type-regexps): Change type for PS files
to `postscript'.
Diffstat (limited to 'lisp/image.el')
-rw-r--r--lisp/image.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/image.el b/lisp/image.el
index b412a3359b2..381f02e8860 100644
--- a/lisp/image.el
+++ b/lisp/image.el
@@ -1,6 +1,6 @@
;;; image.el --- image API
-;; Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc.
+;; Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
;; Keywords: multimedia
;; This file is part of GNU Emacs.
@@ -38,7 +38,7 @@
("^\211PNG\r\n" . png)
("^#define" . xbm)
("^\\(MM\0\\*\\)\\|\\(II\\*\0\\)" . tiff)
- ("^%!PS" . ghostscript))
+ ("^%!PS" . postscript))
"Alist of (REGEXP . IMAGE-TYPE) pairs used to auto-detect image types.
When the first bytes of an image file match REGEXP, it is assumed to
be of image type IMAGE-TYPE.")