mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-17 09:10:22 +02:00
* First batch of libguile changes for Elisp support.
* Fixed a few typos. * Minor rationalization of macros relating to source breakpoints.
This commit is contained in:
parent
229d2c9c07
commit
c96d76b88d
28 changed files with 275 additions and 195 deletions
|
@ -46,6 +46,7 @@
|
|||
#include "libguile/eq.h"
|
||||
#include "libguile/root.h"
|
||||
#include "libguile/strings.h"
|
||||
#include "libguile/lang.h"
|
||||
|
||||
#include "libguile/validate.h"
|
||||
#include "libguile/vectors.h"
|
||||
|
@ -101,7 +102,7 @@ SCM_DEFINE (scm_vector, "vector", 0, 0, 1,
|
|||
SCM_VALIDATE_LIST_COPYLEN (1, l, i);
|
||||
res = scm_c_make_vector (i, SCM_UNSPECIFIED);
|
||||
data = SCM_VELTS (res);
|
||||
while (!SCM_NULLP (l))
|
||||
while (!SCM_NULL_OR_NIL_P (l))
|
||||
{
|
||||
*data++ = SCM_CAR (l);
|
||||
l = SCM_CDR (l);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue