Consider the following minimal example meant to illustrate a single figure with a subfigure using the memoir documentclass:
\documentclass{memoir}
\newsubfloat{figure}% Allow for subfloats (subfigures) within figure environment
\begin{document}
\begin{figure}
\centering
\subbottom[]{\rule{2pt}{3em}\quad\rule{2pt}{3em}\quad\rule{2pt}{3em}}%
\caption{This is a caption}
\end{figure}
\end{document}
The caption of the subfigure is empty so that it only displays the subfigure counter - '(a)' in this case:

However, the subfigure label is not perfectly centered the way I had hoped with an empty caption. Changing the subfigure definition (using some negative spacing via $\!\!$) to
\documentclass{memoir}
\newsubfloat{figure}% Allow for subfloats (subfigures) within figure environment
\begin{document}
\begin{figure}
\centering
\subbottom[$\!\!$]{\rule{2pt}{3em}\quad\rule{2pt}{3em}\quad\rule{2pt}{3em}}%
\caption{This is a caption}
\end{figure}
\end{document}
instead produces a more acceptable empty subfigure caption, however minuscule the difference:

Is this a known bug, or at least fixable?
\@empty, which happens if there is no optional argument. – egreg Jul 14 '11 at 18:06