In my document, one of my chapter title lasts more than one line, so I want to increase the space between its lines. To do this, I used \linespread{1.8}\selectfont in the code below, but by using that, the space between "Chapter #" and the Chapter Heading increases, too. How can I avoid this latter undesired space? By the way, I'd prefer not to use additional packages like titlesec or setspace.
\documentclass{book}
\makeatletter
\def\@makechapterhead#1{%
\vspace*{50\p@}%
{\parindent \z@ \raggedright \normalfont
\ifnum \c@secnumdepth >\m@ne
\if@mainmatter
\huge\bfseries \@chapapp\space \thechapter
\par\nobreak
\vskip 20\p@
\fi
\fi
\interlinepenalty\@M
\Huge \bfseries \linespread{2}\selectfont #1\par\nobreak
\vskip 40\p@
}}
\makeatother
\begin{document}
\chapter{Chapter Heading which is very very very long}
Some text ...
\end{document}
