blob: 19d8a605ea5cef5ef112815e5c03e48092260aaa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
%% Copyright (c) 2010-2011 by Martin Scharrer <martin@scharrer-online.de>
%% -----------------------------------------------------------------
%%
%% This work may be distributed and/or modified under the
%% conditions of the LaTeX Project Public License, either version 1.3c
%% of this license or (at your option) any later version.
%% The latest version of this license is in
%%
%% http://www.latex-project.org/lppl.txt
%%
%% and version 1.3c or later is part of all distributions of LaTeX
%% version 2008/05/04 or later.
%%
%% This work has the LPPL maintenance status `maintained'.
%%
%% The Current Maintainer of this work is Martin Scharrer.
%%
%% This work consists of the files filehook.dtx, filehook.ins
%% and the derived file filehook.sty.
%%
%% $Id: filehook.dtx 2504 2011-07-18 17:22:50Z martin $
\ProvidesPackage{filehook-memoir}[2011/01/03 v0.1 filehook patch for memoir class]
\RequirePackage{filehook}
\begingroup
\long\def\memoir@InputIfFileExists#1#2{%
\IfFileExists{#1}%
{#2\@addtofilelist{#1}\m@matbeginf{#1}%
\@@input \@filef@und
\m@matendf{#1}%
\killm@matf{#1}}%
}
\ifcase
\ifx\InputIfFileExists\latex@InputIfFileExists 0\else
\ifx\InputIfFileExists\memoir@InputIfFileExists 0\else
1%
\fi\fi
\relax
\global\let\filehook@InputIfFileExists\filehook@default@InputIfFileExists
\global\let\filehook@@InputIfFileExists\filehook@@default@InputIfFileExists
\global\let\InputIfFileExists\filehook@InputIfFileExists
\filehook@appendwarg\filehook@atbegin{\m@matbeginf{#1}}%
\filehook@prefixwarg\filehook@atend{\m@matendf{#1}\killm@matf{#1}}%
\PackageInfo{filehook}{Detected 'memoir' class: the memoir hooks will be moved to the `At...OfFiles' hooks}
\else
\iffilehook@force
\global\let\filehook@InputIfFileExists\filehook@default@InputIfFileExists
\global\let\filehook@@InputIfFileExists\filehook@@default@InputIfFileExists
\global\let\InputIfFileExists\filehook@InputIfFileExists
\PackageWarning{filehook}{Detected 'memoir' class with unknown definition of \string\InputIfFileExists.^^J%
The 'force' option of 'filehook' is in effect. Macro is overwritten with default!}%
\else
\PackageError{filehook}{Detected 'memoir' class with unknown definition of \string\InputIfFileExists.^^J%
Use the 'force' option of 'filehook' to overwrite it.}{}%
\fi
\fi
\endgroup
\endinput
%%
%% End of file `filehook-memoir.sty'.
|