diff options
| author | Jay Belanger | 2004-10-21 15:41:15 +0000 |
|---|---|---|
| committer | Jay Belanger | 2004-10-21 15:41:15 +0000 |
| commit | 6e237e7298748ebb5fe7baa4d56a5cf7cbac224b (patch) | |
| tree | 2bdf72e73090d030e038a1e3adb91b83c6f61caa | |
| parent | 32c3cab6e306623a7c5351143bfcdcf2eefee6f7 (diff) | |
| download | emacs-6e237e7298748ebb5fe7baa4d56a5cf7cbac224b.tar.gz emacs-6e237e7298748ebb5fe7baa4d56a5cf7cbac224b.zip | |
(calc-graph-init): Use `set-process-query-on-exit-flag'
| -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 @@ | |||
| 1 | 2004-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 | |||
| 1 | 2004-10-21 Daniel Pfeiffer <occitan@esperanto.org> | 6 | 2004-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))) |