diff options
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/emacs-lisp/chart.el | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index e11944a6808..0b1c02a1cfc 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2013-05-24 Glenn Morris <rgm@gnu.org> | 1 | 2013-05-24 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * emacs-lisp/chart.el (chart-sort): Replace obsolete `object-name'. | ||
| 4 | |||
| 3 | * progmodes/cperl-mode.el (cperl-mode): Use fboundp. | 5 | * progmodes/cperl-mode.el (cperl-mode): Use fboundp. |
| 4 | (Info-find-node, Man-getpage-in-background): Declare. | 6 | (Info-find-node, Man-getpage-in-background): Declare. |
| 5 | 7 | ||
diff --git a/lisp/emacs-lisp/chart.el b/lisp/emacs-lisp/chart.el index a259985df99..032eced7592 100644 --- a/lisp/emacs-lisp/chart.el +++ b/lisp/emacs-lisp/chart.el | |||
| @@ -470,7 +470,7 @@ See `chart-sort-matchlist' for more details." | |||
| 470 | (progn | 470 | (progn |
| 471 | (chart-sort-matchlist s2 s1 pred) | 471 | (chart-sort-matchlist s2 s1 pred) |
| 472 | (setq s (oref s2 data))) | 472 | (setq s (oref s2 data))) |
| 473 | (error "Sorting of chart %s not supported" (object-name c)))) | 473 | (error "Sorting of chart %s not supported" (eieio-object-name c)))) |
| 474 | (if (eq (oref c direction) 'horizontal) | 474 | (if (eq (oref c direction) 'horizontal) |
| 475 | (oset (oref c y-axis) items s) | 475 | (oset (oref c y-axis) items s) |
| 476 | (oset (oref c x-axis) items s) | 476 | (oset (oref c x-axis) items s) |