X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/rocl/blobdiff_plain/92d4e32147b82130582be1f20c5e97fcc48805ec..ef16cccdd44d926b93303d5b3f3483dc5c449509:/vec.c diff --git a/vec.c b/vec.c index c2aef2e..912fb38 100644 --- a/vec.c +++ b/vec.c @@ -1,37 +1,27 @@ /* -*-c-*- - * - * $Id: vec.c,v 1.1 2003/03/07 00:45:35 mdw Exp $ * * Vectors and arrays in Tcl * * (c) 2003 Mark Wooding */ -/*----- Licensing notice --------------------------------------------------* +/*----- Licensing notice --------------------------------------------------* * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. - * + * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. - * + * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software Foundation, * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/*----- Revision history --------------------------------------------------* - * - * $Log: vec.c,v $ - * Revision 1.1 2003/03/07 00:45:35 mdw - * A multidimensional vector/matrix type which is updateable in place. - * - */ - /*----- Header files ------------------------------------------------------*/ #include @@ -375,7 +365,8 @@ static int vec_new(ClientData cd, Tcl_Interp *ti, Tcl_IncrRefCount(init); if ((v = vec_create(ti, ndim, dim, init)) == 0) goto fail; - Tcl_SetResult(ti, Tcl_GetCommandName(ti, v->c), TCL_STATIC); + Tcl_SetResult(ti, (/*unconst */char *)Tcl_GetCommandName(ti, v->c), + TCL_STATIC); rc = TCL_OK; fail: