We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca27533 commit d4a41b6Copy full SHA for d4a41b6
1 file changed
gnuplot.el
@@ -240,7 +240,7 @@ non-nil."
240
:initialize #'custom-initialize-default
241
:set #'gnuplot--set-display-mode)
242
243
-(defcustom gnuplot-image-buffer-name "*gnuplot output*"
+(defcustom gnuplot-image-buffer "*gnuplot image*"
244
"Buffer name for dedicated gnuplot image output."
245
:type 'string)
246
@@ -1395,8 +1395,7 @@ updates Gnuplot with the appropriate \"set output\" command."
1395
(insert "\n")
1396
(gnuplot--inline-image-set-output))))
1397
(dedicated
1398
- (with-current-buffer
1399
- (get-buffer-create gnuplot-image-buffer-name)
+ (with-current-buffer (get-buffer-create gnuplot-image-buffer)
1400
(let ((inhibit-read-only t))
1401
(erase-buffer)
1402
(insert-file-contents filename)
0 commit comments