tset entire gnuplot 'terminal' string in function arguments - Granular.jl - Julia package for granular dynamics simulation
 (HTM) git clone git://src.adamsgaard.dk/Granular.jl
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 6156d91a42c970d7484b0744f3ce1ea990925fe2
 (DIR) parent de89698ecd7d60173f5cfbf8e30b455452b8951c
 (HTM) Author: Anders Damsgaard <andersd@riseup.net>
       Date:   Sat, 18 Nov 2017 08:57:07 -0500
       
       set entire gnuplot 'terminal' string in function arguments
       
       Diffstat:
         M src/io.jl                           |       6 +++---
       
       1 file changed, 3 insertions(+), 3 deletions(-)
       ---
 (DIR) diff --git a/src/io.jl b/src/io.jl
       t@@ -1172,13 +1172,13 @@ Plot the grains using Gnuplot and save the figure to disk.
        * `simulation::Simulation`: the simulation object containing the grains.
        * `filetype::String`: the output file type (default = "png").
        * `gnuplot_terminal::String`: the gnuplot output terminal to use (default =
       -    "png").
       +    "png crop size 1200,1200").
        * `verbose::String`: show output file as info message in stdout (default = 
            true).
        """
        function plotGrains(sim::Simulation;
                            filetype::String = "png",
       -                    gnuplot_terminal::String = "png",
       +                    gnuplot_terminal::String = "png crop size 1200,1200",
                            show_figure::Bool = true,
                            verbose::Bool = true)
        
       t@@ -1203,7 +1203,7 @@ function plotGrains(sim::Simulation;
            open(gnuplotscript, "w") do f
        
                write(f, """#!/usr/bin/env gnuplot
       -              set term $(gnuplot_terminal) crop size 1200,1200
       +              set term $(gnuplot_terminal)
                      set out "$(filename)"
                      set palette defined (0 "gray", 1 "white")
                      set xlabel "x [m]"