changeset 270:d3ba5847cbda

calc: Update comment.
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 23 Jan 2015 10:54:44 +0200
parents d62280f2a9c7
children f47b41d2be64
files calc.tcl
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/calc.tcl	Fri Jan 23 10:50:21 2015 +0200
+++ b/calc.tcl	Fri Jan 23 10:54:44 2015 +0200
@@ -37,7 +37,7 @@
   # This is something rather perverse
   set equ [join [join $args ""] ""]
 
-  # Use 'expr' to calculate the result, but catch any exceptions / errors
+  # Use external binary to calculate the result, but catch any exceptions / errors
   if {[catch {set res [exec -- "/usr/local/bin/mfcalc" "$equ"]} uerrmsg]} {
     return $uerrmsg
   } else {