Received: from mail-ot1-f67.google.com (mail-ot1-f67.google.com [209.85.210.67]) by mail.sr.ht (Postfix) with ESMTPS id 5C1C4400BF for <~emersion/mrsh-dev@lists.sr.ht>; Mon, 28 Jan 2019 21:27:58 +0000 (UTC) Authentication-Results: mail.sr.ht; dkim=pass (2048-bit key) header.d=gmail.com header.i=@gmail.com header.b=pUz8L6Fg Received: by mail-ot1-f67.google.com with SMTP id i20so16049030otl.0 for <~emersion/mrsh-dev@lists.sr.ht>; Mon, 28 Jan 2019 13:27:39 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=7yFNQXIXnTttP9FTtQ9IyeYc7q/jYMPPmHgR5jkRvuk=; b=pUz8L6Fgb0JWDtJP0DwvZd46hE+otlKIj/3qSCIBy3m3FBV7ofns6DW8ZxoQtebY4h iHzxw115wDltG+NFDaM93lq/y+sa27oHGVJJ+rPqyBtWT/JSq2bQN0ZsZ/TGRP4ljTYb qjLyDnvvelCZeWGhI/OTRKiI3k0jB7BSfINyhR1+2ohB3vrVLDu/BmBfK8QYM3uC5KUj +YmiCmMRGgIczjyCZG+rOX4uOs9MgwZFvv5usylDuRQuGR+P3yDyWHzTksjcQWI6C3hW CNxQlYFagWCBs017ZZxfdeF/y8w3cIe6I1Aq5s71O5uSsYrfWI2fZbqCfDhryynA5Afw Jm5A== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=7yFNQXIXnTttP9FTtQ9IyeYc7q/jYMPPmHgR5jkRvuk=; b=tYbzyQbaqQeslpDda0faVlwKFko34GWOxX9yRmChxkEapZ6RnB98rBlFTepsuRrmGz WOhxWT6vSY/MOcrcGaqfbnf8h2P97UelbHikmDIh1NG6jv9nvK93LXpRTbFotV2urUo5 5JD7VQMnXhHFylmuL6rCpVinrPk9hdzOCT67Rf1Owg0U43j/9tu2vyJkYSUtwrE1or/m Y1gn64Iz+CRuwXNVRHpHZsGKzIc1Oql+MXAIgEsl3Cr4clgUOgFf8lBGLvx284cb0JhF 79O8d9dCXKGJ8ClsL8IlZIunNjsOFT/h4aeeRNCH9rlWykHJvJWFwDzgBu+kkzH9G10I tr8g== X-Gm-Message-State: AJcUukckLZNSdd5cTxCPXkbocg3vn6QgctX52m+H6/xS7E8xsvanoJqP nKodSTnaaqvYL2ryLvLkJap51O1ny8rwUHPA/7SEnA== X-Google-Smtp-Source: ALg8bN6NH2cr6Yo8/Ls8z4LwV2ysdeZrFaYkljqjSDhOkttlQR/RlsSQKWXVftIqJ97qyvpPDKbjVPNMTXCwnSEp0Bo= X-Received: by 2002:a9d:721e:: with SMTP id u30mr17971833otj.203.1548710859032; Mon, 28 Jan 2019 13:27:39 -0800 (PST) MIME-Version: 1.0 References: <20190125085755.5290-1-cristianontivero@gmail.com> In-Reply-To: From: Cristian Ontivero Date: Mon, 28 Jan 2019 22:24:40 +0100 Message-ID: Subject: Re: [PATCH v2] Parse arithmetic expressions with shifts To: Simon Ser Cc: "~emersion/mrsh-dev@lists.sr.ht" <~emersion/mrsh-dev@lists.sr.ht> Content-Type: text/plain; charset="UTF-8" > Is there anything that prevents this from being merged? Not really, as far as I could test, it all works, but I wanted to get your opinion on it first. > Nitpick: the convention I've used so far is to use the `_func` prefix > for function types. My bad, I realized after sending the patch. But now that you mention it, I had something I wanted to bring up for discussion: the suffix currently used is `func_t`, but POSIX reserves the `_t` suffix (for a discussion, see for instance: https://stackoverflow.com/a/231807/3599459 ). Ultimately, I'll follow whatever naming convention you see fit, but I wanted to know if you had some particular reason for disregarding that.