From 66540fd5f4f2c7e11d70f572814daa90ec22f92b Mon Sep 17 00:00:00 2001 From: TEC Date: Sun, 25 Oct 2020 02:10:53 +0800 Subject: [PATCH 14/15] org-plot.el: Make min/max keywords consistent * lisp/org-plot.el: (org-plot/add-options-to-plist): Have both x/y min/max, but have min/max aliased to the y-axis options. --- lisp/org-plot.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lisp/org-plot.el b/lisp/org-plot.el index da9f6ea74..f6348907f 100644 --- a/lisp/org-plot.el +++ b/lisp/org-plot.el @@ -64,8 +64,10 @@ Returns the resulting property list." ("timeind" . :timeind) ("timefmt" . :timefmt) ("min" . :ymin) - ("max" . :ymax) ("ymin" . :ymin) + ("max" . :ymax) + ("ymax" . :ymax) + ("xmin" . :xmin) ("xmax" . :xmax) ("ticks" . :ticks) ("trans" . :transpose) -- 2.28.0