I really like to use the MinionPro package in my documents, which provides an option called footnotefigures that activates a special set of figures for footnotes.
Unfortunately this option is not fully compatibel with the KOMA-classes such as scrbook while everthing works fine for example with article. If footnotefigures is active in scrbook, the footnote figures in the text are set correctly, but not the ones in the footnotes, which I would like to change.
At the moment this incompatibility produces a rather poor outcome, especially when a 'high' character like 'h' follows the footnote figure – as you can see in this figure.

Here is a MWE
\documentclass[a4paper,12pt]{scrbook}
\usepackage[footnotefigures]{MinionPro}
\begin{document}
abc \vfill
\footnote{h -- First footnote.}h
\footnote{h -- Second footnote}h
\footnote{h -- Third footnote}h
\footnote{h -- Fourth footnote}h
\end{document}
And here is the declaration of footnotefigures from the MinionPro package documentation.
\DeclareOption{footnotefigures}{%
\def\@makefnmark{%
\begingroup
\normalfont
\fontfamily{MinionPro-Extra}\fontencoding{U}\selectfont
\@thefnmark
\endgroup}}
scrbook, the footnote figures look better too. – maetra May 8 '12 at 12:50