diff options
author | Andy Wingo <wingo@pobox.com> | 2013-01-23 16:12:08 +0100 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2013-01-23 16:12:08 +0100 |
commit | 747bd5347d8b36c41809a16cb3f17b23e9afa9bf (patch) | |
tree | c8fa343e92b5446e92b38efaa105489f4817e9be /libguile/vm-i-scheme.c | |
parent | d7874b91830ebb1dbfc887d5309e5fce46a87fc2 (diff) | |
parent | faabd16157f8b55766cf890e79129c066fbc124b (diff) | |
download | guile-747bd5347d8b36c41809a16cb3f17b23e9afa9bf.tar.gz |
merge stable-2.0
There are some bugs with command-line handling that will be sorted out
with the next commit.
Diffstat (limited to 'libguile/vm-i-scheme.c')
-rw-r--r-- | libguile/vm-i-scheme.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/vm-i-scheme.c b/libguile/vm-i-scheme.c index 0e3956363..dce90e326 100644 --- a/libguile/vm-i-scheme.c +++ b/libguile/vm-i-scheme.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001, 2009, 2010, 2011, 2012 Free Software Foundation, Inc. +/* Copyright (C) 2001, 2009, 2010, 2011, 2012, 2013 Free Software Foundation, Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License @@ -558,7 +558,7 @@ VM_DEFINE_INSTRUCTION (170, make_array, "make-array", 3, -1, 1) * Structs */ #define VM_VALIDATE_STRUCT(obj, proc) \ - VM_ASSERT (SCM_STRUCTP (obj), vm_error_not_a_pair (proc, obj)) + VM_ASSERT (SCM_STRUCTP (obj), vm_error_not_a_struct (proc, obj)) VM_DEFINE_FUNCTION (171, struct_p, "struct?", 1) { |