-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update fansi * Update base64enc * Update cli * Update colorspace * Update digest * Update ellipsis * Update farver * Update fastmap * Update lattice * Update magrittr * Update mass * Update nlme * Update rlang * Update utf8
- Loading branch information
1 parent
c54cd21
commit 5e32693
Showing
18 changed files
with
392 additions
and
396 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
recipes/recipes_emscripten/r-fansi/patches/0001-Ignore-custom-limit-checks.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
From 246a64768dd17781fb68c0d6ed7e698225dd7ca1 Mon Sep 17 00:00:00 2001 | ||
From: Isabel Paredes <[email protected]> | ||
Date: Fri, 13 Dec 2024 23:34:11 +0100 | ||
Subject: [PATCH] Ignore custom limit checks | ||
|
||
FIXME: this is not the proper solution but it works for xeus-r | ||
--- | ||
src/assumptions.c | 2 +- | ||
1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
||
diff --git a/src/assumptions.c b/src/assumptions.c | ||
index 1187151..5df0773 100644 | ||
--- a/src/assumptions.c | ||
+++ b/src/assumptions.c | ||
@@ -37,7 +37,7 @@ static void check_limits(void) { | ||
// Unsigned | ||
FANSI_lim.lim_size_t.max < 1U || FANSI_lim.lim_size_t.min != 0U | ||
) | ||
- error("Invalid custom limit; contact maintainer."); // nocov | ||
+ printf("ERROR: Invalid custom limit; contact maintainer."); // nocov | ||
} | ||
// nocov start | ||
// by definition none of the errors should be thrown, so no sense in |
Oops, something went wrong.