-
-
Notifications
You must be signed in to change notification settings - Fork 14.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
63 changed files
with
15,222 additions
and
508 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6318,6 +6318,12 @@ | |
githubId = 1447245; | ||
name = "Robin Gloster"; | ||
}; | ||
gmemstr = { | ||
email = "[email protected]"; | ||
github = "gmemstr"; | ||
githubId = 1878840; | ||
name = "Gabriel Simmer"; | ||
}; | ||
gnxlxnxx = { | ||
email = "[email protected]"; | ||
github = "gnxlxnxx"; | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
#ifndef NOESCAPE_NOOP_H_ | ||
#define NOESCAPE_NOOP_H_ | ||
|
||
// First, do some work to get definitions for *_WIDTH. Normally, Emacs would | ||
// have these defined by headers in-tree, but clang's headers clash with those. | ||
// Due to how include paths work, we have to include clang headers if we want to | ||
// mess with CoreFoundation definitions. | ||
#pragma push_macro("__STDC_VERSION__") | ||
// Make the preprocessor think that we're on C2x. The macros we want are gated | ||
// on it. | ||
#undef __STDC_VERSION__ | ||
#define __STDC_VERSION__ 202000L | ||
// Include limits.h first, as stdint.h includes it. | ||
#include <limits.h> | ||
|
||
// XX: clang's stdint.h is shy and won't give us its defs unless it thinks it's | ||
// in freestanding mode. | ||
#undef __STDC_HOSTED__ | ||
#include <stdint.h> | ||
#define __STDC_HOSTED__ 1 | ||
|
||
#pragma pop_macro("__STDC_VERSION__") | ||
|
||
// Now, pull in the header that defines CF_NOESCAPE. | ||
#include <CoreFoundation/CFBase.h> | ||
|
||
// Redefine CF_NOESCAPE as empty. | ||
#undef CF_NOESCAPE | ||
#define CF_NOESCAPE | ||
|
||
#endif // NOESCAPE_NOOP_H_ |
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
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
Oops, something went wrong.