summaryrefslogtreecommitdiff
path: root/guile/examples/msg-graphs
AgeCommit message (Collapse)Author
2019-05-11Fix handling of --text option in `msg-graphs' examplePiyush
The previous implementation of `msg-graphs` called `mu:plots/mu:plot` with output set to `#t` when the option `--text` was passed. This caused an error in the `string-append` call in `mu:plot` since the expression `(or output "dumb")` evaluated to the symbol `#t` rather than a string. This commit fixes this by making sure that `mu:plot` is called with `output` set to `"dumb"` when the option `--text` is passed to `msg-graphs`, and with `output` set to `"wxt"` (the default multi-platform graphical output device in `gnuplot`) otherwise. This is done by essentially making the code of `msg-graphs` agree with the plotting code in the `guile/scripts` directory.
2012-09-17* guile: update some of the examplesdjcb
2012-07-14* guile: make sure the examples still workdjcb
2012-07-12* guile: some internal improvementsdjcb
2012-04-28* guile/examples/msg-graphs: show years correctly in graphs, add year-month ↵djcb
period
2012-01-22* fix contacts-export, msg-graphsdjcb
2012-01-22* guile: fix logic inversion in plot generationdjcb
2012-01-15* rename msg-stats => msg-graphsdjcb