zsh-workers
 help / color / mirror / code / Atom feed
From: Vincent Lefevre <vincent@vinc17.net>
To: zsh-workers@zsh.org
Subject: Re: Regression in zsh 5.7: locking failed for /dev/null: permission denied
Date: Wed, 30 Jan 2019 01:15:54 +0100	[thread overview]
Message-ID: <20190130001554.GA15909@zira.vinc17.org> (raw)
In-Reply-To: <C1F2CCC2-AA57-4153-8D41-0775EBA697FB@dana.is>

On 2019-01-29 14:09:56 -0600, dana wrote:
> On 29 Jan 2019, at 12:51, Vincent Lefevre <vincent@vinc17.net> wrote:
> >I use the following function, see suggestion from
> >http://www.zsh.org/mla/workers/2016/msg02070.html
> >...
> >When I use it, I get the error:
> >
> >append_file_to_hist:24: locking failed for /dev/null: permission denied
> 
> I didn't look *super* hard, but i don't see anything obvious in the changes
> between 5.6.2 and 5.7 that would have affected that. More importantly, i get
> the same error on 5.4.2/Ubuntu and 5.6.2/Homebrew.
> 
> So i'm not sure it's actually a regression...?

Sorry, after more tests and search, I forgot that in the past
I provided $HISTFILE as a second argument, though it should
be defaulted to this file. The function was actually buggy,
as HISTFILE is changed by fc -pa. I've now fixed it:

append_file_to_hist()
{
  emulate -LR zsh
  local -a entries
  local histfile=${2:-$HISTFILE}

  # Implementation issue:  read -r ignores backslash-newline
  # folding, but without -r embedded backslashes are stripped,
  # which seems a bigger problem.  Fix up $entries later.

  IFS=$'\n' read -r -d '' -A entries <$1
  (( $#entries )) || return

  # Must supply a file name here to set HISTSIZE and SAVEHIST
  fc -pa /dev/null $#entries $(( SAVEHIST + $#entries ))

  while (( $#entries ))
  do
    if [[ "$entries[1]" == *\\ ]] then
      entries[1,2]=( ${entries[1]%\\}$'\n'${entries[2]} )
    else
      print -r -S $entries[1]
      shift 1 entries
    fi
  done
  fc -A $histfile

  # Reset SAVEHIST to avoid attempting to lock /dev/null
  SAVEHIST=0        # fc -p makes this implicitly local
}

-- 
Vincent Lefèvre <vincent@vinc17.net> - Web: <https://www.vinc17.net/>
100% accessible validated (X)HTML - Blog: <https://www.vinc17.net/blog/>
Work: CR INRIA - computer arithmetic / AriC project (LIP, ENS-Lyon)

      reply	other threads:[~2019-01-30  0:16 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-01-29 18:51 Vincent Lefevre
2019-01-29 20:09 ` dana
2019-01-30  0:15   ` Vincent Lefevre [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20190130001554.GA15909@zira.vinc17.org \
    --to=vincent@vinc17.net \
    --cc=zsh-workers@zsh.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).