From ac3622ec96935331e55c78dcea68de8da417b153 Mon Sep 17 00:00:00 2001 From: interp Date: Sun, 12 May 2002 05:59:18 +0000 Subject: [PATCH] added mapping of old pop3-names to new ones updated docu accordingly --- doc/latex/pop3.tex | 12 ++++++++++-- pop3-obsolete.scm | 12 ++++++++++++ 2 files changed, 22 insertions(+), 2 deletions(-) create mode 100644 pop3-obsolete.scm diff --git a/doc/latex/pop3.tex b/doc/latex/pop3.tex index 52f8bc3..847b157 100644 --- a/doc/latex/pop3.tex +++ b/doc/latex/pop3.tex @@ -1,8 +1,8 @@ \section{Using POP3}\label{sec:pop3} % \begin{description} -\item[Used files:] pop3.scm -\item[Name of the package:] pop3 +\item[Used files:] pop3.scm pop3-obsolete.scm +\item[Name of the package:] pop3 pop3-obsolete.scm \end{description} % \subsection{Overview} @@ -93,6 +93,14 @@ always refers to the result of \ex{pop3-\ob{}connect}. Close the connection with the mailhost. \end{defundesc} +\subsubsection*{Obsolete procedures} + +Names in further versions of \ex{pop3} contained a colon (`\ex{:}') +after the prefix `\ex{pop3-}'. This is now changed to a hyphen +('\ex{-}'), accordingly to SUnet's philosophy. If you need the old +names, use the \ex{pop3\=obsolete}-package that maps the old names to +the new ones. + \subsection{Related work} \begin{itemize} diff --git a/pop3-obsolete.scm b/pop3-obsolete.scm new file mode 100644 index 0000000..b866f72 --- /dev/null +++ b/pop3-obsolete.scm @@ -0,0 +1,12 @@ +; maps obsolete pop3-procedure names to new pop3 procedure names +; by Andreas Bernauer (2002) + +(define pop3:connect pop3-connect) +(define pop3:login pop3-login) +(define pop3:stat pop3-stat) +(define pop3:get pop3-get) +(define pop3:headers pop3-headers) +(define pop3:last pop3-last) +(define pop3:delete pop3-delete) +(define pop3:reset pop3-reset) +(define pop3:quit pop3-quit)