diff options
author | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2005-10-24 17:06:37 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2005-10-24 17:06:37 +0000 |
commit | 21ae6d6baaefe9a1d4e7a9189b6f8d9ef8cc091c (patch) | |
tree | 7410bd5530f8386ed5e9935c83be3542a1164ed6 /src/mtx_fill.c | |
parent | 3841ef753439cdf3bfcb37e54d39174cb0426f69 (diff) |
make errors findable with "last error"
svn path=/trunk/externals/iem/iemmatrix/; revision=3764
Diffstat (limited to 'src/mtx_fill.c')
-rw-r--r-- | src/mtx_fill.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mtx_fill.c b/src/mtx_fill.c index 400c217..d842c9e 100644 --- a/src/mtx_fill.c +++ b/src/mtx_fill.c @@ -162,7 +162,7 @@ static void *newMTXFill (t_symbol *s, int argc, t_atom *argv) if (atom_getsymbol(argv)==gensym("matrix")) mTXFillIndexMatrix (mtx_fill_obj, s, argc-1, argv+1); else - post("mtx_fill: creation argument must be 'matrix <startrow> <startcol>' for submatrix filling or 'matrix rows columns [...]' for indexed filling with scalar/matrices"); + pd_error(mtx_fill_obj, "mtx_fill: creation argument must be 'matrix <startrow> <startcol>' for submatrix filling or 'matrix rows columns [...]' for indexed filling with scalar/matrices"); } mtx_fill_obj->list_outlet = outlet_new (&mtx_fill_obj->x_obj, gensym("matrix")); |