Skip to content

Commit

Permalink
* Fixed bug that generates an error when a custom/local modifications…
Browse files Browse the repository at this point in the history
… file is loaded.

git-svn-id: https://tufte-latex.googlecode.com/svn/trunk@175 516e2f36-ce3a-0410-bea4-1d4a03f5df72
  • Loading branch information
godbyk committed Aug 23, 2011
1 parent 5693d34 commit 4bcdaf0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions tufte-book.cls
Expand Up @@ -70,10 +70,10 @@
%%
% If there is a `tufte-book-local.sty' file, load it.

\IfFileExists{tufte-book-local.tex}
{\input{tufte-book-local}
\TufteInfoNL{Loading tufte-book-local.tex}}
{}
\IfFileExists{tufte-book-local.tex}{%
\@tufte@info@noline{Loading tufte-book-local.tex}%
\input{tufte-book-local}%
}{}

%%
% End of file
Expand Down
8 changes: 4 additions & 4 deletions tufte-handout.cls
Expand Up @@ -28,10 +28,10 @@
%%
% If there is a `tufte-handout-local.tex' file, load it.

\IfFileExists{tufte-handout-local.tex}
{\input{tufte-handout-local}
\TufteInfoNL{Loading tufte-handout-local.tex}}
{}
\IfFileExists{tufte-handout-local.tex}{%
\input{tufte-handout-local}%
\@tufte@info@noline{Loading tufte-handout-local.tex}%
}{}


%%
Expand Down

0 comments on commit 4bcdaf0

Please sign in to comment.