I'm using OT1 font encoding, but I would like to use T1 font encoding for glyphs that don't exist in OT1. To do that, I'm redefining the typical T1 commands so that they automatically choose a T1 encoding. With the commands for accented letters, however, like \'e for é, using \newcommand{\'e} won't work because \' is already defined, but I can't use \renewcommand{\'e} either, since the full sequence \'e is not already defined.
Suggestions?
\documentclass{article}
\usepackage[T1, OT1]{fontenc}
%\newcommand{\'e}{\fontencoding{T1}\selectfont{\symbol{233}}} <- gives 'Command \' already defined' error
%\renewcommand{\'e}{\fontencoding{T1}\selectfont{\symbol{233}}} <- gives '\'eundefined' error
\begin{document}
\'e
\end{document}
EDIT:
Given all the comments about the OT1 vs. T1 encoding, here's the contents of the OT1 and T1 fonts for libertine. One can see here that the OT1 font has some ligatures the T1 font doesn't have:
\documentclass{article}
\usepackage{fonttable}
\begin{document}
\fonttable{LinLibertineT-lf-ot1} % OT1 encoding
\fonttable{LinLibertineT-lf-t1} % T1 encoding
\end{document}


libertinefont, so I want to use the T1 non-combined glyph. – Sverre Sep 06 '13 at 10:22libertinefont includes some nice ligatures missing from T1. – Sverre Sep 06 '13 at 10:26libertinein this case, then. Really OT1 is only there for 'stability' reasons. – Joseph Wright Sep 06 '13 at 10:26libertineOT1 font has some ligatures the T1 font doesn't have. There's nothing I can do to "fix" that. It's just a fact about the font package. – Sverre Sep 06 '13 at 10:28\'eis a command followed by a letter. As such, you'll need to redefine\'with knowledge of which letters it should fork for. Can you give us a list of the desired ones? – Joseph Wright Sep 06 '13 at 10:28