From acd23551c3322f397dc43f97796273a8958f6ef9 Mon Sep 17 00:00:00 2001 From: Benno Schulenberg Date: Thu, 23 May 2019 12:43:31 +0200 Subject: [PATCH] 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 20bbd942..7952bc00 100644 --- a/src/files.c +++ b/src/files.c @@ -420,7 +420,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;