[This is essentially a memoir-specific version of this question.]
How can I reduce the line spacing within section (or other) headings in memoir without affecting the spacing to the body text above?
In the example that follows, modifying \baselineskip does the trick but also affects the spacing of the heading to the previous section's body text. I would like to get rid of this unintended side effect.
Further notes about my example: Note that halving \baselineskip is too much, but it's good for illustrating the issue. I've included \tableofcontents and used the optional-argument version of \section (\section[what appears in the TOC]{what appears in the document body}) to draw attention to the fact that whatever modifications of the section heading we make, we probably don't want to affect the table of contents. For those taking issue with the visuals of the example ("The original line spacing is just fine in what you show below!"), the actual problem is from something else (my other, actual document has horrible double-spacing); update: I have included a screenshot for that as well.
Notes for those helping with a solution: 1. It seems that \par can't be issued within a section heading. 2. \setstretch (from the solutions to the linked question) doesn't work within memoir.

This issue is exacerbated by doublespacing (add \DoubleSpacing in the preamble):

\documentclass[12pt]{memoir}
%\DoubleSpacing
\begin{document}
\tableofcontents
\chapter{This is a chapter heading}
Look at the distance of this line to the following heading (as intended):
\section{This is a section heading spanning two lines}
Look at the distance of this line to the following heading (slightly too small):
\section[This is a section heading spanning two lines]%
{\setlength{\baselineskip}{0.5\baselineskip}%
This is a section heading spanning two lines}
Text.
\end{document}


\baselineskipin the form of a strut. That is, insert\rule{0pt}{22pt}at the start of the section title (22pt =\baselineskipwithin\section). – Werner Apr 25 '14 at 07:11\setsecheadstyle), remember the two arguments of\fontsize– daleif Apr 25 '14 at 11:14\fontsizewould be? Also my actual document has\DoubleSpacingin the preamble. Could you try writing an answer? – Lover of Structure Apr 25 '14 at 12:38\DoubleSpacing.] This works for me if the section heading is after body text on the page, but if the section heading ends up at the top of the page, it appears lower than it should. – Lover of Structure Apr 26 '14 at 23:00