X-Git-Url: http://cgit.sxemacs.org/?a=blobdiff_plain;f=src%2Fdllist.c;h=4f911bcb079947dbcd681aa0fb154c0ed42ec777;hb=cd6a53c341ec2a70c48073d53be60396de0a14cf;hp=438ea31c0b1dce48e5b269309f30785b514c8700;hpb=b282c934958783ec39f9e021bd480e3279ad5a2f;p=sxemacs diff --git a/src/dllist.c b/src/dllist.c index 438ea31..4f911bc 100644 --- a/src/dllist.c +++ b/src/dllist.c @@ -60,7 +60,7 @@ mark_dllist(Lisp_Object obj) /* unlock everything */ DLL_UNLOCK(dllist); - mark_object(XDLLIST_PLIST(obj)); + mark_object(XDLLIST_PLIST(obj)); return XDLLIST_PLIST(obj); } @@ -84,7 +84,7 @@ print_dllist(Lisp_Object obj, Lisp_Object printcharfun, int escapeflag) nex = tmp->next; /* unlock the entire dllist */ DLL_UNLOCK(dllist); - + write_c_string(" ", printcharfun); print_internal(ti, printcharfun, escapeflag); tmp = nex; @@ -227,8 +227,8 @@ Return the property list of DLLIST. */ (dllist)) { - CHECK_DLLIST(dllist); - return XDLLIST_PLIST(dllist); + CHECK_DLLIST(dllist); + return XDLLIST_PLIST(dllist); } static const struct lrecord_description dllist_description[] = { @@ -471,7 +471,7 @@ void dllist_prepend(dllist_t dllist, void *element) { dllist_item_t new = new_dllist_item(); - + new->item = element; dllist_prepend_item(dllist, new); return; @@ -761,7 +761,7 @@ with the original. (dllist)) { CHECK_DLLIST(dllist); - + return wrap_dllist(copy_dllist(XDLLIST(dllist))); }