Skip to content

Commit 0edaded

Browse files
committed
Few more cases of space vs tab
1 parent 6df2a20 commit 0edaded

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/subset.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -179,14 +179,14 @@ attribute_hidden SEXP ExtractSubset(SEXP x, SEXP indx, SEXP call)
179179
break;
180180
case VECSXP:
181181
case EXPRSXP:
182-
/* Is `VECTOR_ELT_FIX_NAMED()` still needed? If not, split out VECSXP */
182+
/* Is `VECTOR_ELT_FIX_NAMED()` still needed? If not, split out VECSXP */
183183
/* case and use `DATAPTR_OR_NULL()` there too. Currently it never */
184184
/* takes the `px[ii]` path - DV. */
185-
EXTRACT_SUBSET_LOOP(const SEXP *px = NULL,
185+
EXTRACT_SUBSET_LOOP(const SEXP *px = NULL,
186186
SET_VECTOR_ELT(result, i, px[ii]),
187187
SET_VECTOR_ELT(result, i, VECTOR_ELT_FIX_NAMED(x, ii)),
188188
SET_VECTOR_ELT(result, i, R_NilValue));
189-
break;
189+
break;
190190
case RAWSXP:
191191
EXTRACT_SUBSET_LOOP(const Rbyte* px = (const Rbyte*) DATAPTR_OR_NULL(x),
192192
RAW0(result)[i] = px[ii],

0 commit comments

Comments
 (0)