zsh-workers
 help / color / mirror / code / Atom feed
From: "Lawrence Velázquez" <larryv@zsh.org>
To: "Bart Schaefer" <schaefer@brasslantern.com>
Cc: zsh-workers@zsh.org
Subject: Re: [PATCH] More stuff for Etc/FAQ
Date: Sun, 14 Jan 2024 15:46:11 -0500	[thread overview]
Message-ID: <5cf3cd9d-d2f7-451e-b42b-f10c0d12c625@app.fastmail.com> (raw)
In-Reply-To: <CAH+w=7YUUkKQ=P-+C8TNoK5CgH0aYssE_EFsXR8tJG8zyqizuQ@mail.gmail.com>

On Sat, Jan 13, 2024, at 3:48 PM, Bart Schaefer wrote:
> The file-slurping thread on zsh-users brought me here.
>
> Anything else worth mentioning?
>
> [...]
>
> +  mytt($(command)) removes trailing newlines from the output of mytt(command)
> +  when substituting, whereas mytt(${ command }) and its variants do not.

Hm, this diverges from the behavior of (m)ksh and (soon) bash:

	% cat ./nofork_test; echo
	echo "$KSH_VERSION$BASH_VERSION$ZSH_PATCHLEVEL"
	foo=${ echo abc; }
	typeset -p foo

	% ksh ./nofork_test; echo
	Version AJM 93u+ 2012-08-01
	foo=abc

	% mksh ./nofork_test; echo
	@(#)MIRBSD KSH R59 2020/10/31
	typeset foo=abc

	% Reference/bash/bash ./nofork_test; echo
	5.3.0(2)-devel
	declare -- foo="abc"

	% zsh/zsh/Src/zsh ./nofork_test
	zsh-5.9-342-gdde1259
	typeset foo=$'abc\n'

If this is intentional, then it might be worth mentioning in the
FAQ, to warn users who are used to the other behavior.

-- 
vq


  reply	other threads:[~2024-01-14 20:48 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-01-13 20:48 Bart Schaefer
2024-01-14 20:46 ` Lawrence Velázquez [this message]
2024-01-14 22:37   ` Bart Schaefer
2024-01-15  0:39     ` Lawrence Velázquez

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=5cf3cd9d-d2f7-451e-b42b-f10c0d12c625@app.fastmail.com \
    --to=larryv@zsh.org \
    --cc=schaefer@brasslantern.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).