While something such as
\let\oldemph\emph
\renewcommand{\emph}[1]{\textbf{\oldemph{#1}}}
seems to work, it really doesn't, because \emph is defined with \DeclareRobustCommand. Where doesn't it work? suppose you write that code and then use \emph in a caption:
\caption{This is \emph{emphasized}}
what is written in the .aux file is
\@writefile{lof}{\contentsline {figure}{\numberline {1}{\ignorespaces This is \textbf {\emph {emphasized}}}}{1}}
This is because the original expansion of \emph is
\protect\emph§
(where with § I'm denoting a space in the name). So the \emph{emphasized} in the caption gets expanded successively into
\textbf{\oldemph{emphasized}}
\protect\textbf§{\protect\emph§{emphasized}}
\textbf§{\emph§{emphasized}
and written as
\textbf {\emph {emphasized}}
(because TeX adds a space after a command name when writing). In this case, when reading the file for building the List of Figures or Tables, TeX will find
\textbf{\textbf{\oldemph{emphasized}}}
which is innocuous. But it's not very difficult to imagine situations where this can lead to infinite loops.
The package letltxmacro prevents this problem:
\usepackage{letltxmacro}
\LetLtxMacro{\oldemph}{\emph}
\renewcommand{\emph}[1]{\textbf{\oldemph{#1}}}
would be a safer way to proceed.
Never use \let on commands defined with \DeclareRobustCommand or commands defined with \newcommand and having an optional argument.
The former can be recognized by the fact that \show\command returns
> \command=macro:
->\protect \command .
The latter are distinguished by the fact that \show\command returns
> \command=macro:
->\@protected@testopt \command \\command {...}.
(where ... is actually the default for the optional argument).
etoolboxpackage. – mbork Mar 9 '12 at 6:55