Skip to content

Commit

Permalink
* lisp/emacs-lisp/chart.el (chart-axis-draw): Replace obsolete alias.
Browse files Browse the repository at this point in the history
  • Loading branch information
rgmorris committed May 12, 2015
1 parent 3903564 commit f2941a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lisp/emacs-lisp/chart.el
Expand Up @@ -280,7 +280,7 @@ START and END represent the boundary."
"Draw axis information based upon a range to be spread along the edge.
A is the chart to draw. DIR is the direction.
MARGIN, ZONE, START, and END specify restrictions in chart space."
(call-next-method)
(cl-call-next-method)
;; We prefer about 5 spaces between each value
(let* ((i (car (oref a bounds)))
(e (cdr (oref a bounds)))
Expand Down Expand Up @@ -333,7 +333,7 @@ Automatically compensates for direction."
"Draw axis information based upon A range to be spread along the edge.
Optional argument DIR is the direction of the chart.
Optional arguments MARGIN, ZONE, START and END specify boundaries of the drawing."
(call-next-method)
(cl-call-next-method)
;; We prefer about 5 spaces between each value
(let* ((i 0)
(s (oref a items))
Expand Down

0 comments on commit f2941a7

Please sign in to comment.