mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-16 16:50:21 +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
|
@ -44,6 +44,7 @@
|
|||
|
||||
#include "libguile/_scm.h"
|
||||
#include "libguile/vectors.h"
|
||||
#include "libguile/lang.h"
|
||||
|
||||
#include "libguile/validate.h"
|
||||
#include "libguile/weaks.h"
|
||||
|
@ -144,7 +145,7 @@ SCM_DEFINE (scm_weak_vector, "weak-vector", 0, 0, 1,
|
|||
res = scm_make_weak_vector (SCM_MAKINUM (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