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

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

[nongnu] elpa/gnuplot a70749e 054/184: Fix "replot" command in grammar.


From: ELPA Syncer
Subject: [nongnu] elpa/gnuplot a70749e 054/184: Fix "replot" command in grammar.
Date: Sun, 29 Aug 2021 11:03:14 -0400 (EDT)

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

    Fix "replot" command in grammar.
---
 gnuplot-context.el | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/gnuplot-context.el b/gnuplot-context.el
index 9bf5f95..48df224 100644
--- a/gnuplot-context.el
+++ b/gnuplot-context.el
@@ -871,7 +871,7 @@ name; otherwise continues tokenizing up to the token at 
point. FIXME"
 ;;; Commands
         (command
          (info-keyword
-          (either plot-command splot-command fit-command print-command
+          (either plot-command splot-command replot-command fit-command 
print-command
                   set-command cd-command call-command simple-command
                   eval-command load-command lower-raise-command pause-command
                   save-command system-command test-command undefine-command
@@ -906,6 +906,8 @@ name; otherwise continues tokenizing up to the token at 
point. FIXME"
            [(maybe x-axis-range) (maybe y-axis-range) (maybe z-axis-range)])
 
           plot-body])
+
+         (replot-command [(kw "replot") plot-body])
         
         ;; Axis ranges
         (axis-range-component
@@ -1768,7 +1770,7 @@ name; otherwise continues tokenizing up to the token at 
point. FIXME"
          ["call" string (many expression)])
 
         (simple-command
-         (either "clear" "exit" "quit" "pwd" "refresh" "replot" "reread" 
"reset"
+         (either "clear" "exit" "quit" "pwd" "refresh" "reread" "reset"
                  "shell"))
 
         (eval-command



reply via email to

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