diff scripts/general/bitcmp.m @ 12480:139f993936af

Uppercase variables in script error strings.
author Rik <octave@nomad.inbox5.com>
date Fri, 25 Feb 2011 20:12:05 -0800
parents c792872f8942
children 72c96de7a403
line wrap: on
line diff
--- a/scripts/general/bitcmp.m
+++ b/scripts/general/bitcmp.m
@@ -77,7 +77,7 @@
   else
     m = double (k);
     if (any (m < 1) || any (m > amax))
-      error ("bitcmp: k must be in the range [1,%d]", amax);
+      error ("bitcmp: K must be in the range [1,%d]", amax);
     endif
     mask = bitshift (bmax, k - amax);
     C = bitxor (bitand (A, mask), mask);