diff options
| author | Eli Zaretskii | 2009-08-07 14:52:56 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2009-08-07 14:52:56 +0000 |
| commit | 615cc5fba6e5f7dd6a24e8d41747ed53391880b6 (patch) | |
| tree | 8547e1df4f1b9e66416f3722af550d99c0de4b75 | |
| parent | a35d3ad8f1bdd10c127bc51db4986794803d8c23 (diff) | |
| download | emacs-615cc5fba6e5f7dd6a24e8d41747ed53391880b6.tar.gz emacs-615cc5fba6e5f7dd6a24e8d41747ed53391880b6.zip | |
(calc-gnuplot-name) [windows-nt]: Use "pgnuplot" as the default.
| -rw-r--r-- | lisp/calc/calc.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/calc/calc.el b/lisp/calc/calc.el index 59dde099828..b291969b7f5 100644 --- a/lisp/calc/calc.el +++ b/lisp/calc/calc.el | |||
| @@ -393,7 +393,7 @@ This is not required to be present for user-written mode annotations." | |||
| 393 | (string :tag "Closing annotation delimiter")))) | 393 | (string :tag "Closing annotation delimiter")))) |
| 394 | 394 | ||
| 395 | (defcustom calc-gnuplot-name | 395 | (defcustom calc-gnuplot-name |
| 396 | "gnuplot" | 396 | (if (eq system-type 'windows-nt) "pgnuplot" "gnuplot") |
| 397 | "Name of GNUPLOT program, for calc-graph features." | 397 | "Name of GNUPLOT program, for calc-graph features." |
| 398 | :group 'calc | 398 | :group 'calc |
| 399 | :type '(string)) | 399 | :type '(string)) |