-
-
Notifications
You must be signed in to change notification settings - Fork 358
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
julia 0.6 | ||
julia 0.6-pre | ||
|
||
RecipesBase | ||
PlotUtils 0.4.1 | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
__precompile__(true) | ||
__precompile__(false) | ||
|
||
module Plots | ||
|
||
|
@@ -118,6 +118,15 @@ ignoreNaN_extrema(x) = Base.extrema(x) | |
|
||
# --------------------------------------------------------- | ||
|
||
# to cater for block matrices, Base.transpose is recursive. | ||
# This makes it impossible to create row vectors of String and Symbol with the transpose operator. | ||
# This solves this issue, internally in Plots at least. | ||
|
||
Base.transpose(x::Symbol) = x | ||
Base.transpose(x::String) = x | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
mkborregaard
Author
Member
|
||
|
||
# --------------------------------------------------------- | ||
|
||
import Measures | ||
import Measures: Length, AbsoluteLength, Measure, BoundingBox, mm, cm, inch, pt, width, height, w, h | ||
const BBox = Measures.Absolute2DBox | ||
|
this is type piracy, not okay, and not local to plots at all - method extension is globally visible and you're overwriting the deprecation here