Skip to content

Commit 8d3649e

Browse files
committed
remove trimws
1 parent a8016bc commit 8d3649e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

R/qenv-eval_code.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ setMethod("eval_code", signature = c("qenv", "character"), function(object, code
3737

3838
for (i in seq_along(code_split)) {
3939
current_code <- code_split[[i]]
40-
current_call <- parse(text = trimws(current_code), keep.source = TRUE)
40+
current_call <- parse(text = current_code, keep.source = TRUE)
4141

4242
# Using withCallingHandlers to capture warnings and messages.
4343
# Using tryCatch to capture the error and abort further evaluation.

0 commit comments

Comments
 (0)