From b1872b273ac127ec9754422044d05d13d32b26dc Mon Sep 17 00:00:00 2001 From: Benno Schulenberg Date: Thu, 23 May 2019 12:43:31 +0200 Subject: [PATCH 4/4] help: don't check for confinement when opening a temporary help-text file This fixes https://savannah.gnu.org/bugs/?56369. --- src/files.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/files.c b/src/files.c index 8cdf1959..9e633d21 100644 --- a/src/files.c +++ b/src/files.c @@ -425,7 +425,7 @@ bool open_buffer(const char *filename, bool new_buffer) as_an_at = FALSE; #ifdef ENABLE_OPERATINGDIR - if (outside_of_confinement(filename, FALSE)) { + if (!inhelp && outside_of_confinement(filename, FALSE)) { statusline(ALERT, _("Can't read file from outside of %s"), operating_dir); return FALSE; -- 2.20.1