]> git.eshelyaron.com Git - emacs.git/commitdiff
(gs-load-image): Use `set-process-query-on-exit-flag' instead of
authorJohn Paul Wallington <jpw@pobox.com>
Tue, 25 May 2004 20:12:00 +0000 (20:12 +0000)
committerJohn Paul Wallington <jpw@pobox.com>
Tue, 25 May 2004 20:12:00 +0000 (20:12 +0000)
obsolete `process-kill-without-query'.

lisp/ChangeLog
lisp/gs.el

index 9cfd96f7075b7609c0c415c69c085a9a599f3799..b319197bac842a63bc8d2bb797b19ec3d73dfef0 100644 (file)
@@ -1,3 +1,11 @@
+2004-05-25  John Paul Wallington  <jpw@gnu.org>
+
+       * gs.el (gs-load-image): Use `set-process-query-on-exit-flag'
+       instead of obsolete `process-kill-without-query'.
+
+       * textmodes/texinfmt.el (texinfo-indexvar-alist):
+       Declare as variable, not constant.
+
 2004-05-25  Luc Teirlinck  <teirllm@auburn.edu>
 
        * files.el (find-file-noselect-1): Fix bug introduced by
index 284b18251ec6ccb4d6c6ac06b9ff1066af80f5ac..2c38a55f6dfe939731d264dd43fce1f205684358 100644 (file)
@@ -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 @@ the form \"WINDOW-ID PIXMAP-ID\".  Value is non-nil if successful."
        (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))