aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJay Belanger2004-10-21 15:41:15 +0000
committerJay Belanger2004-10-21 15:41:15 +0000
commit6e237e7298748ebb5fe7baa4d56a5cf7cbac224b (patch)
tree2bdf72e73090d030e038a1e3adb91b83c6f61caa
parent32c3cab6e306623a7c5351143bfcdcf2eefee6f7 (diff)
downloademacs-6e237e7298748ebb5fe7baa4d56a5cf7cbac224b.tar.gz
emacs-6e237e7298748ebb5fe7baa4d56a5cf7cbac224b.zip
(calc-graph-init): Use `set-process-query-on-exit-flag'
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/calc/calc-graph.el2
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 @@
12004-10-21 John Paul Wallington <jpw@gnu.org>
2
3 * calc/calc-graph.el (calc-graph-init):
4 Use `set-process-query-on-exit-flag'.
5
12004-10-21 Daniel Pfeiffer <occitan@esperanto.org> 62004-10-21 Daniel Pfeiffer <occitan@esperanto.org>
2 7
3 * progmodes/compile.el (compilation-start): Rely on `cd' to get 8 * 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."
1401 calc-gnuplot-buffer 1401 calc-gnuplot-buffer
1402 calc-gnuplot-name 1402 calc-gnuplot-name
1403 args)) 1403 args))
1404 (process-kill-without-query calc-gnuplot-process)) 1404 (set-process-query-on-exit-flag calc-gnuplot-process nil))
1405 (file-error 1405 (file-error
1406 (error "Sorry, can't find \"%s\" on your system" 1406 (error "Sorry, can't find \"%s\" on your system"
1407 calc-gnuplot-name))) 1407 calc-gnuplot-name)))