I want my endnotes to simulate the effect of
\usepackage[para,norule,hang]{footmisc}
With these settings, footnotes occur within a single paragraph. Each endnote, by contrast, begins on a new line. I've added some code (from Alan Munn, re hspace except at the beginning of a line) to kill the indent, but can't figure out how to replace with the carriage carry with the same horizontal spacing as footmisc places between the footnotes.
An example:
\documentclass{article}
\usepackage{endnotes}
\usepackage[para,norule,hang]{footmisc}
\usepackage{etoolbox}
\makeatletter
\patchcmd{\@makefntext}{.5em}{0em}{}{}
\makeatother
%KILL ENDNOTE INDENT
%\def\enoteformat{\rightskip=0pt \leftskip=0pt \parindent=0em \leavevmode\llap{\makeenmark}}
\patchcmd{\enoteformat}{1.8em}{0pt}{}{}
\begin{document}
Gallia\footnote{in} est\footnote{one} omnis\footnote{paragraph}
divisa\endnote{in} in\endnote{a} partes\endnote{vertical} tres\endnote{list}
\newpage
\theendnotes
\end{document}
