diff options
author | Kenichi Handa <handa@m17n.org> | 2010-01-20 11:33:52 +0900 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 2010-01-20 11:33:52 +0900 |
commit | 4d1e6632e7195a82088408817a6b3db7e520d370 (patch) | |
tree | cb6db6987bbce2445624ae2643c73552bd02ee13 /lisp/emacs-lisp/chart.el | |
parent | b7235808116742ec0a7aacbe53fb80db13ce5ef7 (diff) | |
parent | 1fdede8fa561814c5535de26f1f505e29cb38b33 (diff) | |
download | emacs-4d1e6632e7195a82088408817a6b3db7e520d370.tar.gz emacs-4d1e6632e7195a82088408817a6b3db7e520d370.tar.bz2 emacs-4d1e6632e7195a82088408817a6b3db7e520d370.zip |
Fix ccl encoding of unibyte source.
Diffstat (limited to 'lisp/emacs-lisp/chart.el')
-rw-r--r-- | lisp/emacs-lisp/chart.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/chart.el b/lisp/emacs-lisp/chart.el index 4f01e540601..d2abdcffe0d 100644 --- a/lisp/emacs-lisp/chart.el +++ b/lisp/emacs-lisp/chart.el @@ -644,7 +644,7 @@ SORT-PRED if desired." ;; Lets create the chart! (chart-bar-quickie 'vertical "Files Extension Distribution" extlst "File Extensions" - cntlst "# of occurances" + cntlst "# of occurrences" 10 '(lambda (a b) (> (cdr a) (cdr b)))) )) @@ -740,9 +740,9 @@ SORT-PRED if desired." (setcar cell (1+ (car cell)))) (setq nmlst (cons nam nmlst) cntlst (cons 1 cntlst)))))) - (chart-bar-quickie 'vertical "Username Occurance in RMAIL box" + (chart-bar-quickie 'vertical "Username Occurrence in RMAIL box" nmlst "User Names" - cntlst "# of occurances" + cntlst "# of occurrences" 10 '(lambda (a b) (> (cdr a) (cdr b)))) )) |