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.
This commit is contained in:
TEC 2020-10-25 02:10:53 +08:00 committed by Bastien
parent 90815cc948
commit a831e763fa
1 changed files with 3 additions and 1 deletions

View File

@ -65,8 +65,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)