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

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

[nongnu] elpa/gnuplot 0d2079a 056/184: Fixed a regression in 7cb3975 rel


From: ELPA Syncer
Subject: [nongnu] elpa/gnuplot 0d2079a 056/184: Fixed a regression in 7cb3975 relating to scanning stack at end-of-command
Date: Sun, 29 Aug 2021 11:03:14 -0400 (EDT)

branch: elpa/gnuplot
commit 0d2079a1d6ab1241f951e9ae58c819323f9fd6e4
Author: Jonathan Oddie <j.j.oddie@gmail.com>
Commit: Jonathan Oddie <j.j.oddie@gmail.com>

    Fixed a regression in 7cb3975 relating to scanning stack at end-of-command
---
 gnuplot-context.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gnuplot-context.el b/gnuplot-context.el
index b2d8de0..1954b28 100644
--- a/gnuplot-context.el
+++ b/gnuplot-context.el
@@ -1899,7 +1899,8 @@ there."
 
       (flet ((advance
              ()
-             (if (and (null (pop tokens)) (not completing-p))
+             (pop tokens)
+             (if (and (null tokens) (not completing-p))
                  (gnuplot-scan-stack stack tokens)))
             (fail () (setq fail t)))
        



reply via email to

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