Since I upgraded to PGF 2.10, some of my arrows drawn with to don't look right anymore. For instance, they are missing arrow-heads, and some other styles I applied to them have also disappeared. For example:
\begin{tikzpicture}
\draw (0,0) to[->, line width=2mm] (3,1);
\end{tikzpicture}

I'm not getting any error messages nor anything relevant in the log file. This example compiles correctly with PGF 2.00.

topath didn't have any options before so that's why TikZ could understand the options for example this also works :\draw (0,0) to (3,1) [->, line width=2mm];So if it's not ambiguous, TikZ is smart enough to see that options are coming in, but heretoalso looks for extra options that are not necessarily related to the path drawing, hence the conflict. So it cannot throw errors since the code is legitimate. – percusse Sep 13 '12 at 13:19tohad options before, likeinandout. That's basically the reason I was usingtoin the first place. – mhelvens Sep 13 '12 at 13:27..to[mystyle]it gets quickly out of hand Besides you can use some of the keys both locally and globally . – percusse Sep 13 '12 at 13:41