Try to improve the explanation of the "raise" statement and how its arguments
are interpreted.
This closes SF bug #532467.
diff --git a/Doc/ref/ref4.tex b/Doc/ref/ref4.tex
index 1f8b237..f16dc8e 100644
--- a/Doc/ref/ref4.tex
+++ b/Doc/ref/ref4.tex
@@ -192,11 +192,10 @@
 class of it.
 
 When an exception is raised, an object (maybe \code{None}) is passed
-as the exception's ``parameter'' or ``value''; this object does not
-affect the selection of an exception handler, but is passed to the
-selected exception handler as additional information.  For class
-exceptions, this object must be an instance of the exception class
-being raised.
+as the exception's \emph{value}; this object does not affect the
+selection of an exception handler, but is passed to the selected
+exception handler as additional information.  For class exceptions,
+this object must be an instance of the exception class being raised.
 
 See also the description of the \keyword{try} statement in section
 \ref{try} and \keyword{raise} statement in section \ref{raise}.