0
0
mirror of https://github.com/vim/vim.git synced 2025-07-26 11:04:33 -04:00

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
368 B
TeX
Raw Normal View History

\documentclass{article}
\newcommand{\foo}{}
\renewcommand*{\foo}[1]{#10}
\providecommand{\foo}[1][default]{#11}
\newenvironment*{baz}{START}{STOP}
\renewenvironment{baz}[1]{HEAD of #12:}{TAIL}
\renewenvironment*{baz}[1][default]{BEGINNING of #12:}{END}
\begin{document}
\foo{TeX} % -> TeX0
\begin{baz} tex \end{baz} % -> BEGINNING of default2:tex END
\end{document}