From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 834 invoked by alias); 29 Oct 2015 15:01:07 -0000 Mailing-List: contact zsh-workers-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Workers List List-Post: List-Help: X-Seq: 37015 Received: (qmail 14531 invoked from network); 29 Oct 2015 15:01:04 -0000 X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,T_DKIM_INVALID autolearn=ham autolearn_force=no version=3.4.0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=brasslantern_com.20150623.gappssmtp.com; s=20150623; h=from:message-id:date:in-reply-to:comments:references:to:subject :mime-version:content-type; bh=m0BXUW6C6Ip7uAVDJcAG3hn/enR6rUmZ1vCpI3If3rI=; b=aBYQuQsELnBV6y4Xrp9d5gxOcHNQPZc8PbuJ3zqwLDvpTfXqByyssoCthIr5tkXW6I lYj9WBseh4qb0EiTynHRR71CFnhd1UYPnzfy/3IZ3EO8iE2IROd9WJVXP4jsNlPAGELR TBme/ok0vRki9CGwIoajbjdnFnJGQxNrM4aDgMTJIRtkPwk9nc9mzcYlkm/ctR5hGZG7 Lzn3ESTGyKl3O32EOWnFAVJUY5c/yqktHSOjSILg4RUzrZmYo/9k3SC/uEWId93V46yT a4gdbkHZLDInSVjc6RHfhD99cDimdJX49yPCr2vGL/5D6iySNCiPgbVR67PT5N7HPqG+ 5wBw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:message-id:date:in-reply-to:comments :references:to:subject:mime-version:content-type; bh=m0BXUW6C6Ip7uAVDJcAG3hn/enR6rUmZ1vCpI3If3rI=; b=OBGujwD/yelLwOqXq2p9CIIKpDFxy7LitmpSyTDgqHmLjIOJolU2zMZSzcxR3fsu8M fFVfn4NYeqqx6ONhF5BNwkOasW3R2JK8zWDWpVOZ+ppwnECafriVsorNqy+ae45jnzaw 28RcOrIsNOKs3mhc5EcVLRZK7GNkVfWn4sC1r8LBSFrwebNSBdiRTtQ3rISaKB6M15DS ho9yGHMFndjj+sFfFMq7Jn4VLRSSYqT1LHOKNYdj9ngmMvDAyvDQDTo7EIQfwAu2DLS0 9GVMqyyXEqgXVqQyQNNKt2iCJaI8M3TI98QBW4n9y6P0FkEKaKGl3lru4u//3lQJddrP 7kkA== X-Gm-Message-State: ALoCoQnmzNf/TtL1Vht44rJ+SSBKIuQns3BCTG0bvr5oZLYusACJVq2I6R95e4fWVUsu7lfKPGO6 X-Received: by 10.182.220.168 with SMTP id px8mr330625obc.6.1446130860282; Thu, 29 Oct 2015 08:01:00 -0700 (PDT) From: Bart Schaefer Message-Id: <151029080052.ZM17357@torch.brasslantern.com> Date: Thu, 29 Oct 2015 08:00:52 -0700 In-Reply-To: <20151029145143.6b3830a7@pwslap01u.europe.root.pri> Comments: In reply to Peter Stephenson "Re: Bug: bracketed-paste-magic + ztcp causes wrong pasted contents for CJK payloads" (Oct 29, 2:51pm) References: <151015172503.ZM30721@torch.brasslantern.com> <151027194317.ZM17099@torch.brasslantern.com> <151027202340.ZM17146@torch.brasslantern.com> <20151028093504.756c22b1@pwslap01u.europe.root.pri> <151028100744.ZM18361@torch.brasslantern.com> <20151028174448.70594180@pwslap01u.europe.root.pri> <151028163814.ZM1379@torch.brasslantern.com> <20151029093131.49241bde@pwslap01u.europe.root.pri> <20151029145143.6b3830a7@pwslap01u.europe.root.pri> X-Mailer: OpenZMail Classic (0.9.2 24April2005) To: Zsh hackers list Subject: Re: Bug: bracketed-paste-magic + ztcp causes wrong pasted contents for CJK payloads MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii On Oct 29, 2:51pm, Peter Stephenson wrote: } } The key thing to get this not to be completely broken appears to be } updating the typeset code to call the assign functions with flags set to } 0, i.e. what the replaced functions used to do. Maybe this is a silly question, but do we ever use ASSPM_WARN_CREATE in a case where WARNCREATEGLOBAL is *not* set? Maybe the right thing to do is test WARNCREATEGLOBAL all the way at the bottom, and have the typeset code call the assign functions with an ASSPM_CREATE_SILENT flag, i.e., get rid of ASSPM_WARN_CREATE. Then the set?param() functions don't have to change at all? Or am I missing something?