Description: Fixes a clipping bug in eplot.m
Author:  Stefan Müller <stefan.mueller@fhr.fraunhofer.de>
Forwarded: not-needed
Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=660750

--- a/m/eplot.m
+++ b/m/eplot.m
@@ -159,8 +159,11 @@
       yData=(yData-ePlotAreaYValueStart)*ePlotAreaYFac;
       [yr yc]=size(yData);
 
-      eclip(eFile,ePlotAreaPos(1)*eFac,ePlotAreaPos(2)*eFac,...
-            ePlotAreaWidth*eFac,ePlotAreaHeight*eFac);   
+      eclip(eFile,...
+            (ePlotAreaPos(1)-0.5*eAxesLineWidth)*eFac,...
+            (ePlotAreaPos(2)-0.5*eAxesLineWidth)*eFac,...
+            (ePlotAreaWidth+eAxesLineWidth)*eFac,...
+            (ePlotAreaHeight+eAxesLineWidth)*eFac);   
       if ischar(dash)
         n=size(xData,2);
         exyplots(eFile,...
