I have gotten some undesirable behavior with PGF/TikZ related to clipping and drawing paths with different color, say gray. So I tried with no success to exchange between \clip[draw=gray], \draw[clip,gray] or \path[draw=gray, clip] or maybe using indirectly styles, the Emacs' output throws a TeX error message:
Extra options not allowed for clipping path command...
the only way to do so is by using scopes:
\begin{scope}[draw=gray] ... \end{scope}
Unfortunately, this technique requires that all the scoped objects' lines should be switched to black. So is there a trickery way to achieve this without passing by scope environment?

