Skip to content

Commit 58a3ae8

Browse files
committed
Make gnuplot--inhibit-filter private
1 parent 83d6229 commit 58a3ae8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

gnuplot.el

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1581,7 +1581,7 @@ gnuplot process buffer will be displayed in a window."
15811581
(setq gnuplot-inline-image-filename tmp)
15821582
(gnuplot-send-hiding-output (format "set output '%s'\n" tmp))))
15831583

1584-
(defvar gnuplot-inhibit-filter nil)
1584+
(defvar gnuplot--inhibit-filter nil)
15851585

15861586
(defun gnuplot-insert-inline-image-output (_string)
15871587
"Insert Gnuplot graphical output STRING in the gnuplot-comint buffer.
@@ -1592,8 +1592,8 @@ file `gnuplot-inline-image-filename'; if it exists and has
15921592
nonzero size, inserts it as an inline image, stores a new
15931593
temporary filename in `gnuplot-inline-image-filename', and
15941594
updates Gnuplot with the appropriate 'set output' command."
1595-
(unless gnuplot-inhibit-filter ; Prevent recursively entering this filter
1596-
(let ((gnuplot-inhibit-filter t)) ; (causing an infinite loop)
1595+
(unless gnuplot--inhibit-filter ; Prevent recursively entering this filter
1596+
(let ((gnuplot--inhibit-filter t)) ; (causing an infinite loop)
15971597
(save-excursion
15981598
(goto-char (point-max))
15991599
(beginning-of-line)

0 commit comments

Comments
 (0)