Path: csiph.com!xmission!news.glorb.com!usenet.stanford.edu!not-for-mail From: isabella parakiss Newsgroups: gnu.bash.bug Subject: warnings with compgen -C and -F Date: Wed, 14 Oct 2015 10:08:47 +0200 Lines: 16 Approved: bug-bash@gnu.org Message-ID: NNTP-Posting-Host: lists.gnu.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: usenet.stanford.edu 1444810185 27209 208.118.235.17 (14 Oct 2015 08:09:45 GMT) X-Complaints-To: action@cs.stanford.edu To: bug-bash Envelope-to: bug-bash@gnu.org DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=YbSJSlL1UKnJF9L87c8mXS3VbSuQra3VI8ZLk/vNvbk=; b=SHnoytX9akWl7lAHi1giU32r5tjXpA8VEVFSJsc6UWi56tlalCPR550bkf2COyYJFL 8npOaTQbY/fdQqkJeF7Oo/yjI3AvicNqDZQqCtMZSdDE5ys4yVEXLeJLDNmxjr9zT+9y 3LkvznoFDk+8VbUvMOCXPeNRmo4mvfcUedJ0aeR0B9iWGcsNZ3aC86G5m3Pjjoo04i01 EV9QdJuSXkznJaxQG1YAlE7XsRPRv19X3dasgZA82U5qRpnlgoc97PZM//2tuM6bg/Sd HyCmBz9SXj1iYbGyh4uoFYqhlVbF+7UW+Os4BEFxl3sqSFE37G7fOY4vHUpqU3NowPvA 8+xQ== X-Received: by 10.50.49.68 with SMTP id s4mr2209277ign.44.1444810128038; Wed, 14 Oct 2015 01:08:48 -0700 (PDT) X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2607:f8b0:4001:c05::234 X-BeenThere: bug-bash@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Bug reports for the GNU Bourne Again SHell List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Xref: csiph.com gnu.bash.bug:11654 What's the point of these two warnings in builtins/complete.def ? if (Farg) builtin_error (_("warning: -F option may not work as you expect")); if (Carg) builtin_error (_("warning: -C option may not work as you expect")); Can they be removed? It's stupid to provide a function, and warn every time someone uses it. It's also impossible to suppress _that_ warning without suppressing any error from the actual command. --- xoxo iza