diff options
| author | John Ogness <john.ogness@linutronix.de> | 2018-04-19 16:42:49 +0200 |
|---|---|---|
| committer | John Ogness <john.ogness@linutronix.de> | 2018-04-19 16:42:49 +0200 |
| commit | 76869963a8d6031afbb6f4eedc94fc98bfd217fa (patch) | |
| tree | fa6f121a5d27cf2b793163f7e424b3c2a2119418 | |
| parent | 5d4433a719284d1b3231a85dd510054c12a43014 (diff) | |
fix generic support for print version (tail)
In 5d4433a71928("add generic support for print version") the tails
were not adjusted correctly.
Signed-off-by: John Ogness <john.ogness@linutronix.de>
| -rw-r--r-- | tailpres.tex | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/tailpres.tex b/tailpres.tex index 83b56f1..fe97a29 100644 --- a/tailpres.tex +++ b/tailpres.tex @@ -1,7 +1,6 @@ -\newif\ifformatbeamer - -\ifformatbeamer -\input{tailbeamer} -\else +\IfFileExists{.lxformat_print} +{ \input{tailprint} -\fi +}{ +\input{tailbeamer} +} |
