We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7bf8ffb commit e1d32b8Copy full SHA for e1d32b8
gnuplot.el
@@ -85,8 +85,6 @@
85
86
(declare-function 'eldoc-add-command "eldoc")
87
88
-(defconst gnuplot-ntemacs-p (string-match "msvc" (emacs-version)))
89
-
90
(defgroup gnuplot nil
91
"Gnuplot-mode for Emacs."
92
:prefix "gnuplot-"
@@ -247,7 +245,8 @@ The values are
247
245
(const :tag "Separate window" window)
248
246
(const :tag "This window" nil)))
249
250
-(defcustom gnuplot-echo-command-line-flag (not gnuplot-ntemacs-p)
+(defcustom gnuplot-echo-command-line-flag
+ (not (string-match "msvc" (emacs-version)))
251
"Non-nil means the gnuplot subprocess echoes any input.
252
This sets the fall-back value of `comint-process-echoes'.
253
If `gnuplot-mode' cannot figure out what version number of gnuplot
0 commit comments