I was trying to set up the quoting environment by the package of the same name, which included single line spacing for block quotes as opposed to one and a half line spacing for normal text. The spacing seemed weird to me, so I boiled it down to the following MWE, which clearly shows off the extra line when applying singlespacing to quoting, even though nothing ought to happen because single line spacing is the standard.
\documentclass[12pt,twocolumn]{article}
\usepackage[a4paper,landscape]{geometry}
\usepackage{setspace}
\usepackage{quoting}
\usepackage{lipsum}
\begin{document}
\lipsum*[66]
\begin{quoting}
\lipsum*[66]
\end{quoting}
\lipsum*[66]
\newpage
\quotingsetup{font=singlespacing}
\lipsum*[66]
\begin{quoting}
\lipsum*[66]
\end{quoting}
\lipsum*[66]
\end{document}
Notes: The order in which setspace and quoting are loaded does not seem to matter. I also made sure lipsum's paragraph breaks don't disturb us by using \lipsum*, which doesn't insert \pars.

Is this expected behavior, can I patch it, is it a bug?
