File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -460,17 +460,17 @@ LispPTR mergebackward(LispPTR base) {
460460
461461LispPTR mergeforward (LispPTR base ) {
462462 LispPTR nbase , nbinuse ;
463- struct arrayblock * bbase , * bnbase ;
463+ struct arrayblock * base_np , * nbase_np ;
464464 if (* ArrayMerging_word == NIL ) return NIL ;
465465 if (base == NIL ) return NIL ;
466466 if (checkarrayblock (base , T , T )) return NIL ;
467467
468- bbase = (struct arrayblock * )NativeAligned4FromLAddr (base );
469- nbase = base + DLWORDSPER_CELL * (bbase -> arlen );
468+ base_np = (struct arrayblock * )NativeAligned4FromLAddr (base );
469+ nbase = base + DLWORDSPER_CELL * (base_np -> arlen );
470470 if (nbase == * ArrayFrLst_word || nbase == * ArrayFrLst2_word ) return NIL ;
471471
472- bnbase = (struct arrayblock * )NativeAligned4FromLAddr (nbase );
473- nbinuse = bnbase -> inuse ;
472+ nbase_np = (struct arrayblock * )NativeAligned4FromLAddr (nbase );
473+ nbinuse = nbase_np -> inuse ;
474474 if (checkarrayblock (nbase , !nbinuse , NIL )) return NIL ;
475475 if (nbinuse ) return (NIL );
476476 deleteblock (nbase );
You can’t perform that action at this time.
0 commit comments