I want to disable hyphenation in footnotes, because I have special codes for a special program and the readers should copy this code into his program and therefore its not good, that there is a hyphen ("-") inside the code. See my example in the third line.
\documentclass[a4paper,12pt]{scrartcl}
\usepackage[T1]{fontenc}
\usepackage[ngerman, frenchb]{babel}
\frenchbsetup{StandardLayout=true}
\usepackage[automark]{scrpage2}
\deffootnote{1em}{1em}{\textsuperscript{\thefootnotemark\ }}
\usepackage[automark]{scrpage2}
\begin{document}
This is a test\footnote{\#vfini :[cat="Snt" \& type="VFin"] \& \#vfini >L \#v :[ ] \& \#before\_v :[ ] .* \#v \& \#cat3 :[cat!=/(Rfc|Apst|Ng)/] >* \#before\_v \& \#cat3 >@l \#cat3\_init :[ ] \& \#before\_cat3\_init :[ ] . \#cat3\_init \& \#cat2 :[cat ="Circ"] >* \#before\_cat3\_init \& \#cat2 >@l \#cat2\_init :[ ] \& \#before\_cat2\_init :[ ] . \#cat2\_init \& \#cat1 :[cat!=/(RelNC|Apst|Ng|Circ)/] >* \#before\_cat2\_init \& \#vfini > \#cat1 \& \#vfini > \#cat2 \& \#vfini > \#cat3 \& \#cat1 >@l \#cat1\_init :[ ] \& \#vfini >@l \#cat1\_init}
\end{document}



\raggedright. As in,\footnote{\raggedright ...}. Since this is code though, I would use some fixed-width font as well. – Werner Apr 29 '13 at 19:15\def\nohyph{\hyphenpenalty=10000\relax\exhyphenpenalty=10000\relax} \addtokomafont{footnote}{\nohyph}– Marco Daniel Apr 29 '13 at 19:16