From 126e6a929fce77f40fddbca8a768258e7f09b9d9 Mon Sep 17 00:00:00 2001 From: ridiculousfish Date: Thu, 26 Dec 2019 13:17:34 -0800 Subject: [PATCH] Remove the ARRAY_SEP define It's unused. --- src/env.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/env.h b/src/env.h index 190ef08bf..b33a5e143 100644 --- a/src/env.h +++ b/src/env.h @@ -18,10 +18,6 @@ extern bool curses_initialized; struct event_t; -/// Character for separating two array elements. We use 30, i.e. the ascii record separator since -/// that seems logical. -#define ARRAY_SEP (wchar_t)0x1e - // Flags that may be passed as the 'mode' in env_stack_t::set() / environment_t::get(). enum { /// Default mode. Used with `env_stack_t::get()` to indicate the caller doesn't care what scope