diff options
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/calc/calc-graph.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index e0e6e2dbccb..cfe96a80d10 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2004-10-21 John Paul Wallington <jpw@gnu.org> + + * calc/calc-graph.el (calc-graph-init): + Use `set-process-query-on-exit-flag'. + 2004-10-21 Daniel Pfeiffer <occitan@esperanto.org> * progmodes/compile.el (compilation-start): Rely on `cd' to get diff --git a/lisp/calc/calc-graph.el b/lisp/calc/calc-graph.el index 2c269dcfdce..cec7a5d2136 100644 --- a/lisp/calc/calc-graph.el +++ b/lisp/calc/calc-graph.el @@ -1401,7 +1401,7 @@ This \"dumb\" driver will be present in Gnuplot 3.0." calc-gnuplot-buffer calc-gnuplot-name args)) - (process-kill-without-query calc-gnuplot-process)) + (set-process-query-on-exit-flag calc-gnuplot-process nil)) (file-error (error "Sorry, can't find \"%s\" on your system" calc-gnuplot-name))) |
