# File lib/RMagick.rb, line 512
    def push(*what)
        if what.length == 0
            primitive "push graphic-context"
        else
            # to_s allows a Symbol to be used instead of a String
            primitive "push " + what.map {|w| w.to_s}.join(' ')
        end
    end