Skip to content

Commit

Permalink
fixes for r86791
Browse files Browse the repository at this point in the history
  • Loading branch information
brodieG committed Jun 21, 2024
1 parent 23c7e67 commit 549880a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Title: Trust, but Verify
Description: Declarative template-based framework for verifying that objects
meet structural requirements, and auto-composing error messages when they do
not.
Version: 0.2.17
Version: 0.2.18
Authors@R: c(
person("Brodie", "Gaslam", email="[email protected]",
role=c("aut", "cre")),
Expand Down
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 0.2.17
## 0.2.17-18

* Fix bad C API accesses uncovered by new R-devel checks.

Expand Down
2 changes: 1 addition & 1 deletion src/r-copied.c
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ SEXP ALIKEC_findFun(SEXP symbol, SEXP rho) {
error("Internal Error: `rho` must be environment");// nocov
SEXP vl;
while (rho != R_EmptyEnv) {
vl = findVarInFrame3(rho, symbol, TRUE);
vl = findVarInFrame(rho, symbol);
if (vl != R_UnboundValue) {
if (TYPEOF(vl) == PROMSXP) {
PROTECT(vl);
Expand Down

0 comments on commit 549880a

Please sign in to comment.