diff options
author | Joakim Verona <joakim@verona.se> | 2011-11-22 15:39:42 +0100 |
---|---|---|
committer | Joakim Verona <joakim@verona.se> | 2011-11-22 15:39:42 +0100 |
commit | 40bb789236e486a3f36eefb2840c293369ce2af3 (patch) | |
tree | 8e81d3aa5f232ec7f2c5187c683cb0998d2dc4e2 /lisp/emacs-lisp/chart.el | |
parent | 62318aed495a48e24ff73fe79e420dd801df3189 (diff) | |
parent | a8e1496d750ab0f571b3412ff61aaa4da640a036 (diff) | |
download | emacs-40bb789236e486a3f36eefb2840c293369ce2af3.tar.gz emacs-40bb789236e486a3f36eefb2840c293369ce2af3.tar.bz2 emacs-40bb789236e486a3f36eefb2840c293369ce2af3.zip |
upstream
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 56930a74693..75e7d62f395 100644 --- a/lisp/emacs-lisp/chart.el +++ b/lisp/emacs-lisp/chart.el @@ -634,7 +634,7 @@ SORT-PRED if desired." (setq extlst (cons s extlst) cntlst (cons 1 cntlst))))) (setq flst (cdr flst))) - ;; Lets create the chart! + ;; Let's create the chart! (chart-bar-quickie 'vertical "Files Extension Distribution" extlst "File Extensions" cntlst "# of occurrences" @@ -693,7 +693,7 @@ SORT-PRED if desired." ;(car (nth 5 data)) ; floats are Emacs only ;(cdr (nth 5 data)) ))) - ;; Lets create the chart! + ;; Let's create the chart! (chart-bar-quickie 'vertical "Emacs Runtime Storage Usage" names "Storage Items" nums "Objects"))) @@ -710,7 +710,7 @@ SORT-PRED if desired." (if (fboundp 'x-display-list) (setq names (append names '("x-displays")) nums (append nums (list (length (x-display-list)))))) - ;; Lets create the chart! + ;; Let's create the chart! (chart-bar-quickie 'vertical "Emacs List Size Chart" names "Various Lists" nums "Objects"))) |