# HG changeset patch # User jwe # Date 1114203091 0 # Node ID 9281e7a8072ac69cbce28d35aca152138ab31ec7 # Parent 67f74c2fe742c600ae32a02fd2f2479d1598b29c [project @ 2005-04-22 20:51:31 by jwe] diff -r 67f74c2fe742 -r 9281e7a8072a liboctave/ChangeLog --- a/liboctave/ChangeLog Fri Feb 01 21:31:29 2008 -0500 +++ b/liboctave/ChangeLog Fri Apr 22 20:51:31 2005 +0000 @@ -1,3 +1,8 @@ +2005-04-22 John W. Eaton + + * oct-rl-edit.c (octave_rl_set_terminal_name): Don't cast away + const here now that rl_terminal_name is declared const char*. + 2005-04-21 John W. Eaton * Makefile.in (DISTFILES): Include oct-types.h.in in the list. diff -r 67f74c2fe742 -r 9281e7a8072a liboctave/oct-rl-edit.c --- a/liboctave/oct-rl-edit.c Fri Feb 01 21:31:29 2008 -0500 +++ b/liboctave/oct-rl-edit.c Fri Apr 22 20:51:31 2005 +0000 @@ -287,7 +287,7 @@ void octave_rl_set_terminal_name (const char *term) { - rl_terminal_name = (char *) term; + rl_terminal_name = term; } void