Mercurial > emacs
changeset 55771:4b9c2c0fbfe1
(gs-load-image): Use `set-process-query-on-exit-flag' instead of
obsolete `process-kill-without-query'.
author | John Paul Wallington <jpw@pobox.com> |
---|---|
date | Tue, 25 May 2004 20:09:19 +0000 |
parents | f813d67d717a |
children | 73fe3355e195 |
files | lisp/gs.el |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/gs.el Tue May 25 20:06:06 2004 +0000 +++ b/lisp/gs.el Tue May 25 20:09:19 2004 +0000 @@ -1,6 +1,6 @@ ;;; gs.el --- interface to Ghostscript -;; Copyright (C) 1998, 2001 Free Software Foundation, Inc. +;; Copyright (C) 1998, 2001, 2004 Free Software Foundation, Inc. ;; Maintainer: FSF ;; Keywords: internal @@ -197,7 +197,7 @@ (setenv "GHOSTVIEW" window-and-pixmap-id) (setq gs (apply 'start-process "gs" "*GS*" gs-program (gs-options gs-device file))) - (process-kill-without-query gs) + (set-process-query-on-exit-flag gs nil) gs) nil))