The code below give a strange result when I comment out the \begingroup end \endgroup: the quotation environment has different vertical space to the text before ("Some text").
What is it that chapter defines that the quotation environment behaves different?
\documentclass{book}
\parindent 0pt
\begin{document}
%\begingroup % <--- remove
\chapter{abc}
%\endgroup % <--- remove
Some text
\begin{quotation}
quotation with(out) vertical distance to the previous text
\end{quotation}
\end{document}
