From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 27627 invoked by alias); 26 Oct 2015 18:04:46 -0000 Mailing-List: contact zsh-users-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Users List List-Post: List-Help: X-Seq: 20832 Received: (qmail 4495 invoked from network); 26 Oct 2015 18:04:44 -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 autolearn=ham autolearn_force=no version=3.4.0 X-AuditID: cbfec7f5-f794b6d000001495-cb-562e68d920c8 Date: Mon, 26 Oct 2015 17:54:29 +0000 From: Peter Stephenson To: Zsh Users Subject: Re: error? Message-id: <20151026175429.6406f6db@pwslap01u.europe.root.pri> In-reply-to: <562E46AA.7060905@eastlink.ca> References: <562E46AA.7060905@eastlink.ca> Organization: Samsung Cambridge Solution Centre X-Mailer: Claws Mail 3.7.9 (GTK+ 2.22.0; i386-redhat-linux-gnu) MIME-version: 1.0 Content-type: text/plain; charset=UTF-8 Content-transfer-encoding: quoted-printable X-Brightmail-Tracker: H4sIAAAAAAAAA+NgFjrELMWRmVeSWpSXmKPExsVy+t/xq7q3MvTCDCbpW+w4uZLRgdFj1cEP TAGMUVw2Kak5mWWpRfp2CVwZDROfMxd8Ya14erOdtYHxBUsXIyeHhICJRMe3hVC2mMSFe+vZ uhi5OIQEljJKTPj4nQ0kISQwjUli78ssiMQ2RolXE46DJVgEVCVmdfWwgthsAoYSUzfNZgSx RQQUJc78+sYEYgsLCEv8OLYLrIZXwF5i+/R3zCA2p4C2xIa9HYwQC7Qk9m9vAJvJL6AvcfXv JyaIi+wlZl45wwjRKyjxY/I9sEuZBdQlJs1bxAxha0s8eXeBFWKOusSNu7vZJzAKzULSMgtJ yywkLQsYmVcxiqaWJhcUJ6XnGukVJ+YWl+al6yXn525ihITs1x2MS49ZHWIU4GBU4uF14NcN E2JNLCuuzD3EKMHBrCTCy2qvFybEm5JYWZValB9fVJqTWnyIUZqDRUmcd+au9yFCAumJJanZ qakFqUUwWSYOTqkGRoNnukZXJUWmy2lnlLl9iDZYfuxSfKtn7+7JD149+318aV52TRFz8kyx q603AjtfmLokfvc4kbmvvSLh+s1tRaxVgbMK332PcM2R17pb4VTN1VRodHa1ZUPiqdeX2XsF N6Z8KPinca+zwNqgUOyP+rYjn967WnN58rTdFNkwkVXmovueRYanlFiKMxINtZiLihMBc3x7 G1UCAAA= On Mon, 26 Oct 2015 08:28:42 -0700 Ray Andrews wrote: > I just finished creating a back of my whole install, then did a=20 > configure and make in the backup and got this: >=20 >=20 > zle_thingy.c:667:1: warning: =E2=80=98zle_usable=E2=80=99 was used wi= th no prototype That is, in fact, to use the technical description, wrong. pws diff --git a/Src/Zle/zle_thingy.c b/Src/Zle/zle_thingy.c index c6ef8e6..271fd8e 100644 --- a/Src/Zle/zle_thingy.c +++ b/Src/Zle/zle_thingy.c @@ -626,7 +626,7 @@ bin_zle_complete(char *name, char **args, UNUSED(Option= s ops), UNUSED(char func) =20 /**/ static int -zle_usable() +zle_usable(void) { return zleactive && !incompctlfunc && !incompfunc #if 0