<HTML><BODY style="word-wrap: break-word; -khtml-nbsp-mode: space; -khtml-line-break: after-white-space; "><BR><DIV><DIV>On Jul 20, 2005, at 1:06 AM, Kostis Sagonas wrote:</DIV><BR class="Apple-interchange-newline"><BLOCKQUOTE type="cite"><DIV style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; ">Make the code look as follows and it will pass the compiler:</DIV><DIV style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; min-height: 14px; "><BR></DIV><DIV style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; ">internal_rgb_to_hsv(R, G, B) -></DIV><DIV style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><SPAN class="Apple-converted-space">     </SPAN>Max = lists:max([R,G,B]),</DIV><DIV style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><SPAN class="Apple-converted-space">     </SPAN>Min = lists:min([R,G,B]),</DIV><DIV style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><SPAN class="Apple-converted-space">     </SPAN>V = Max,</DIV><DIV style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><SPAN class="Apple-converted-space">     </SPAN>{Hue,Sat} = %% try</DIV><DIV style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><SPAN class="Apple-converted-space">                     </SPAN>{if</DIV><DIV style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><SPAN class="Apple-converted-space">                          </SPAN>Min == B -> (G-Min)/(R+G-2.0*Min);</DIV><DIV style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><SPAN class="Apple-converted-space">                          </SPAN>Min == R -> (1.0+(B-Min)/(B+G-2.0*Min));</DIV><DIV style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><SPAN class="Apple-converted-space">                          </SPAN>Min == G -> (2.0+(R-Min)/(B+R-2.0*Min))</DIV><DIV style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><SPAN class="Apple-converted-space">                      </SPAN>end*120,(Max-Min)/Max}</DIV><DIV style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><SPAN class="Apple-converted-space">                 </SPAN>%% catch</DIV><DIV style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><SPAN class="Apple-converted-space">                 </SPAN>%% <SPAN class="Apple-converted-space">    </SPAN>error:badarith -></DIV><DIV style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><SPAN class="Apple-converted-space">                 </SPAN>%% <SPAN class="Apple-converted-space">        </SPAN>{undefined,0.0}</DIV><DIV style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><SPAN class="Apple-converted-space">                 </SPAN>%% end</DIV><DIV style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><SPAN class="Apple-converted-space"><SPAN class="Apple-converted-tab">        </SPAN> </SPAN>,</DIV><DIV style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><SPAN class="Apple-converted-space">     </SPAN>{Hue,Sat,V}.</DIV></BLOCKQUOTE></DIV><BR><DIV><FONT class="Apple-style-span" color="#0000DD">Well, this certainly allows the compile to continue, but I run across man more cases of the try/catch causing problems.  They all seem to be related to error:badarith.</FONT></DIV><DIV><FONT class="Apple-style-span" color="#0000DD"><BR class="khtml-block-placeholder"></FONT></DIV><DIV><FONT class="Apple-style-span" color="#0000DD">Apparently, this is a bug in R10B-6, which will be corrected in R10B-7 (per <FONT class="Apple-style-span" color="#000000"><A href="http://sourceforge.net/tracker/index.php?func=detail&aid=1231771&group_id=33028&atid=406952">http://sourceforge.net/tracker/index.php?func=detail&aid=1231771&group_id=33028&atid=406952</A>).</FONT></FONT></DIV><DIV><FONT class="Apple-style-span" color="#0000DD"><BR class="khtml-block-placeholder"></FONT></DIV><DIV><FONT class="Apple-style-span" color="#0000DD">-Brent</FONT></DIV><DIV><FONT class="Apple-style-span" color="#0000DD"> </FONT></DIV></BODY></HTML>