From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Duarte Fusco Newsgroups: gmane.emacs.help Subject: anomalous colours in size_t f() Date: Wed, 28 Dec 2011 03:50:04 +0400 Message-ID: <9f25b7aba1d7c95157a4445f6e8ec11c87def3f1@mail.qip.ru> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Trace: dough.gmane.org 1325062682 25070 80.91.229.12 (28 Dec 2011 08:58:02 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Wed, 28 Dec 2011 08:58:02 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Dec 28 09:57:58 2011 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([140.186.70.17]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1RfpKd-000295-Oy for geh-help-gnu-emacs@m.gmane.org; Wed, 28 Dec 2011 09:57:55 +0100 Original-Received: from localhost ([::1]:52290 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RfpKY-00088V-5C for geh-help-gnu-emacs@m.gmane.org; Wed, 28 Dec 2011 03:57:50 -0500 Original-Received: from eggs.gnu.org ([140.186.70.92]:38418) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rfgmc-0007mz-9e for help-gnu-emacs@gnu.org; Tue, 27 Dec 2011 18:50:15 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Rfgmb-0002z4-3u for help-gnu-emacs@gnu.org; Tue, 27 Dec 2011 18:50:14 -0500 Original-Received: from web23.pochta.ru ([62.141.94.203]:32772) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rfgma-0002yi-GQ for help-gnu-emacs@gnu.org; Tue, 27 Dec 2011 18:50:13 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=qip.ru; s=dkim; h=Content-Transfer-Encoding:Content-Type:MIME-Version:Message-Id:Date:Subject:To:Sender:From; bh=fuxB9pNRcC/0nlngQr/PygcV7jpYsXfsyjqSi3a2urs=; b=Drszxu9sz7lVZ7+EK8aM+R1wa99O4FqvjmtxOWnEINV714SltcNnC5stcubJVAIvhPcxSXFBqAqABiUR98AMgVZZGIhejTvoIzlxtqSmUXc8AEwcL5y5BZcDHYcjw5kj; Original-Received: from [127.0.0.1] (port=48834 helo=localhost) by web23.pochta.ru with esmtp id 1RfgmS-0001I3-GT for help-gnu-emacs@gnu.org; Wed, 28 Dec 2011 03:50:04 +0400 X-Priority: 3 Content-Disposition: inline X-NoSpam-Exim-Host: 62.141.94.133 X-NoSpam-Exim-Port: 8092 X-NoSpam-Exim-Scanned: Yes X-NoSpam-Exim-Result: OK X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 62.141.94.203 X-Mailman-Approved-At: Wed, 28 Dec 2011 03:57:46 -0500 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:83263 Archived-At: Hello=0D=0A=0D=0AA fragment of C code like the following:=0D=0A=0D=0A i= nt main(void) {=0D=0A f1(void);=0D=0A }=0D=0A =0D=0A int f2(void)= {=0D=0A }=0D=0A=0D=0Ais usually displayed in emacs in a way such that= :=0D=0Athe types are displayed in green colour: int, void=0D=0Athe funct= ions being defined are displayed in blue colour: main, f2=0D=0Athe funct= ions being called are displayed in white colour: f1=0D=0A=0D=0ANow, when= I write this:=0D=0A=0D=0A int main(void) {=0D=0A f1(void);=0D=0A }= =0D=0A=0D=0A size_tf2(void) {=0D=0A }=0D=0A=0D=0Asize_tf2 is displayed= in blue colour, which is all right. Then I type a space between size_t= and f2:=0D=0A=0D=0A int main(void) {=0D=0A f1(void);=0D=0A }=0D=0A= =0D=0A size_t f2(void) {=0D=0A }=0D=0A=0D=0ANow, I was expecting to ge= t size_t in green colour and f2 in blue colour, but the fact is I always= get size_t in blue colour and f2 in white colour.=0D=0A=0D=0AIs this an= omaly a bug in emacs?=0D=0A=0D=0ADuarte