zsh-workers
 help / color / mirror / code / Atom feed
From: Peter Stephenson <p.stephenson@samsung.com>
To: zsh-workers@zsh.org
Subject: Re: Vi command mode and end-of-line; ZWC('\n') ?
Date: Mon, 24 Aug 2015 09:33:27 +0100	[thread overview]
Message-ID: <20150824093327.6e6295eb@pwslap01u.europe.root.pri> (raw)
In-Reply-To: <150822181911.ZM31586@torch.brasslantern.com>

On Sat, 22 Aug 2015 18:19:11 -0700
Bart Schaefer <schaefer@brasslantern.com> wrote:
> That thread about end-of-line not working as a "bindkey -a" widget annoys
> me for some reason.  I started looking through zle_move.c and discovered
> that in a few places we compare
> 
> 	zleline[zlecs] == ZWC('\n')
> 
> but in more places we simply do
> 
> 	zleline[pos] == '\n'
> 	zleline[zlecs - 1] != '\n'
> 
> There's even one comment about the latter
> 
> 	/* works OK with combining chars since '\n' must be on its own */
> 
> So which is it?  Should we be using ZWC() or not?

ZWC is basically a glorified standards-compliant cast --- '\n' is a char
while zleline takes wchar_t.  So the sole effect is to ensure we assign
a wide character. So ideally we should be using it everywhere for
consistency; however, I can't think of a practical effect for a 7-bit
ASCII character on a modern system.

pws


      reply	other threads:[~2015-08-24  8:33 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-08-23  1:19 Bart Schaefer
2015-08-24  8:33 ` Peter Stephenson [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=20150824093327.6e6295eb@pwslap01u.europe.root.pri \
    --to=p.stephenson@samsung.com \
    --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).