# HG changeset patch # User Gerd Moellmann # Date 985783185 0 # Node ID b7bd53c4820a70f9d33009c0306491a933a73842 # Parent 9a09663f91ad7d334040ff621e6fe4ad238634de (image-type-regexps): Change type for PS files to `postscript'. diff -r 9a09663f91ad -r b7bd53c4820a lisp/image.el --- a/lisp/image.el Wed Mar 28 12:37:12 2001 +0000 +++ b/lisp/image.el Wed Mar 28 12:39:45 2001 +0000 @@ -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.")