diff options
author | Dirk Herrmann <dirk@dirk-herrmanns-seiten.de> | 2001-03-22 12:52:03 +0000 |
---|---|---|
committer | Dirk Herrmann <dirk@dirk-herrmanns-seiten.de> | 2001-03-22 12:52:03 +0000 |
commit | be54b15d85632c1da64f36cc68623b76efc7239e (patch) | |
tree | ff34697e889e8e37fc15922f2de70be0e5ce9395 /libguile/gdbint.c | |
parent | 3b9e23a7b6ab9d3628759c3fbaf625f10803e911 (diff) | |
download | guile-be54b15d85632c1da64f36cc68623b76efc7239e.tar.gz |
* Replace function scm_makstr with new function scm_allocate_string.
Diffstat (limited to 'libguile/gdbint.c')
-rw-r--r-- | libguile/gdbint.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/gdbint.c b/libguile/gdbint.c index e18fea8a8..8511365d3 100644 --- a/libguile/gdbint.c +++ b/libguile/gdbint.c @@ -1,5 +1,5 @@ /* GDB interface for Guile - * Copyright (C) 1996, 1997, 1999, 2000 Free Software Foundation + * Copyright (C) 1996,1997,1999,2000,2001 Free Software Foundation, Inc. * * 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 @@ -329,7 +329,7 @@ scm_init_gdbint () s); gdb_input_port = scm_permanent_object (port); - tok_buf = scm_permanent_object (scm_makstr (30L, 0)); + tok_buf = scm_permanent_object (scm_allocate_string (30)); } /* |