emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/gnuplot 58a3ae801c 08/11: Make gnuplot--inhibit-filter pri


From: ELPA Syncer
Subject: [nongnu] elpa/gnuplot 58a3ae801c 08/11: Make gnuplot--inhibit-filter private
Date: Sun, 2 Jan 2022 11:58:19 -0500 (EST)

branch: elpa/gnuplot
commit 58a3ae801c09ec301cea26f48813da5f4a0546ac
Author: Daniel Mendler <mail@daniel-mendler.de>
Commit: Daniel Mendler <mail@daniel-mendler.de>

    Make gnuplot--inhibit-filter private
---
 gnuplot.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnuplot.el b/gnuplot.el
index 28f6e2a439..1e5aa0af62 100644
--- a/gnuplot.el
+++ b/gnuplot.el
@@ -1581,7 +1581,7 @@ gnuplot process buffer will be displayed in a window."
     (setq gnuplot-inline-image-filename tmp)
     (gnuplot-send-hiding-output (format "set output '%s'\n" tmp))))
 
-(defvar gnuplot-inhibit-filter nil)
+(defvar gnuplot--inhibit-filter nil)
 
 (defun gnuplot-insert-inline-image-output (_string)
   "Insert Gnuplot graphical output STRING in the gnuplot-comint buffer.
@@ -1592,8 +1592,8 @@ file `gnuplot-inline-image-filename'; if it exists and has
 nonzero size, inserts it as an inline image, stores a new
 temporary filename in `gnuplot-inline-image-filename', and
 updates Gnuplot with the appropriate 'set output' command."
-  (unless gnuplot-inhibit-filter        ; Prevent recursively entering this 
filter
-    (let ((gnuplot-inhibit-filter t))   ; (causing an infinite loop)
+  (unless gnuplot--inhibit-filter        ; Prevent recursively entering this 
filter
+    (let ((gnuplot--inhibit-filter t))   ; (causing an infinite loop)
       (save-excursion
         (goto-char (point-max))
         (beginning-of-line)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]