aboutsummaryrefslogtreecommitdiffstats
path: root/debug.c
diff options
context:
space:
mode:
authorSamuel Williams <samuel.williams@oriontransfer.co.nz>2023-06-01 14:23:30 +0900
committerGitHub <noreply@github.com>2023-06-01 14:23:30 +0900
commita218ed569243e7544d8c4e3b348245a17f6c6a51 (patch)
tree6e439e7661b110bf2b3ee9fa6e2b8df54e72a92a /debug.c
parent35da41b29bf0a1a8fd2cd7e1d7fcb036ca8c2c7c (diff)
downloadruby-a218ed569243e7544d8c4e3b348245a17f6c6a51.tar.gz
Hide the usage of `rb_io_t` where possible. (#7880)
This retries the compatible parts of the previously reverted PR so we can continue to update related code without breaking backwards compatibility.
Diffstat (limited to 'debug.c')
-rw-r--r--debug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/debug.c b/debug.c
index d3f41f1a3a..b5cba590ba 100644
--- a/debug.c
+++ b/debug.c
@@ -70,7 +70,7 @@ const union {
RUBY_FMODE_NOREVLOOKUP = 0x00000100,
RUBY_FMODE_TRUNC = FMODE_TRUNC,
RUBY_FMODE_TEXTMODE = FMODE_TEXTMODE,
- RUBY_FMODE_PREP = 0x00010000,
+ RUBY_FMODE_EXTERNAL = 0x00010000,
RUBY_FMODE_SETENC_BY_BOM = FMODE_SETENC_BY_BOM,
RUBY_FMODE_UNIX = 0x00200000,
RUBY_FMODE_INET = 0x00400000,