branch: elpa/gnuplot
commit 0d2079a1d6ab1241f951e9ae58c819323f9fd6e4
Author: Jonathan Oddie <[email protected]>
Commit: Jonathan Oddie <[email protected]>
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)))