From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Brian Millett Newsgroups: gmane.emacs.bugs Subject: abbrev.c:201: undefined reference to `SYNTAX_ENTRY_FOLLOW_PARENT' Date: Thu, 19 Jul 2007 12:11:15 -0500 Message-ID: <469F9B33.8020402@gmail.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1184865090 13440 80.91.229.12 (19 Jul 2007 17:11:30 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 19 Jul 2007 17:11:30 +0000 (UTC) To: bug-gnu-emacs@gnu.org Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Thu Jul 19 19:11:29 2007 Return-path: Envelope-to: geb-bug-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1IBZX9-0000Zt-T5 for geb-bug-gnu-emacs@m.gmane.org; Thu, 19 Jul 2007 19:11:24 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IBZX9-0006a5-Dl for geb-bug-gnu-emacs@m.gmane.org; Thu, 19 Jul 2007 13:11:23 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IBZX6-0006ZR-Hj for bug-gnu-emacs@gnu.org; Thu, 19 Jul 2007 13:11:20 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IBZX5-0006Z8-0n for bug-gnu-emacs@gnu.org; Thu, 19 Jul 2007 13:11:20 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IBZX4-0006Z3-Ov for bug-gnu-emacs@gnu.org; Thu, 19 Jul 2007 13:11:18 -0400 Original-Received: from py-out-1112.google.com ([64.233.166.182]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1IBZX4-0000Xy-Ek for bug-gnu-emacs@gnu.org; Thu, 19 Jul 2007 13:11:18 -0400 Original-Received: by py-out-1112.google.com with SMTP id f31so1330454pyh for ; Thu, 19 Jul 2007 10:11:17 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:user-agent:mime-version:to:subject:content-type:content-transfer-encoding; b=sxzUUmatecRK24y2pl9XohscL9IzQtbZjy9YbOSoKafAv/axQoxBK3YiUeLQ27WMlOPwkmvFCZhUTKrOgK8ye7zE3pZvBI41hX2B3wjyZKAfeEABYRywyfTbM0ZJ1dHwc0csuMQNSGFvpXzDfQTJr1Ocqt5qeBiGFpvGbWviVqY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:user-agent:mime-version:to:subject:content-type:content-transfer-encoding; b=RWJO+yHpzIcESa43FChgjG2IlX/c8qErEo5t4HHI/T9Ttq+YneFZ/80jAQhnRBVeXFFPdfBLr+ZKJ9zDggEBcBwXm7Al4GYySJhpMBoEWp5VQaj9ST9MrQwFz/Z4H3yHvrDPU22GZuHJphUiI7Ta2QHiBoPv7Iqb/vaGrUZlGJA= Original-Received: by 10.35.84.9 with SMTP id m9mr4872518pyl.1184865077354; Thu, 19 Jul 2007 10:11:17 -0700 (PDT) Original-Received: from ?192.168.250.187? ( [205.158.151.238]) by mx.google.com with ESMTPS id n80sm2268049pyh.2007.07.19.10.11.16 (version=SSLv3 cipher=RC4-MD5); Thu, 19 Jul 2007 10:11:17 -0700 (PDT) User-Agent: Thunderbird 2.0.0.4 (X11/20070615) X-detected-kernel: Linux 2.6 (newer, 2) X-BeenThere: bug-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Bug reports for GNU Emacs, the Swiss army knife of text editors" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.bugs:16176 CVS update today has an error in the compilation: abbrev.o: In function `abbrev_check_chars': /home/bpm/src/emacs/src/abbrev.c:201: undefined reference to `SYNTAX_ENTRY_FOLLOW_PARENT' collect2: ld returned 1 exit status make[1]: *** [temacs] Error 1 make[1]: Leaving directory `/home/bpm/src/emacs/src' make: *** [src] Error 2 a cvs diff of the abrev.c shows that 2 days ago the function abbrev_check_chars was added with the following: 199 /* Copied from SYNTAX in syntax.h, except using FOLLOW_PARENT. */ 200 Lisp_Object syntax_temp 201 = SYNTAX_ENTRY_FOLLOW_PARENT (Vstandard_syntax_table, c); 202 if ( (CONSP (syntax_temp) 203 ? (enum syntaxcode) (XINT (XCAR (syntax_temp)) & 0xff) 204 : Swhitespace) != Sword ) badchars[nbad++] = c; But SYNTAX_ENTRY_FOLLOW_PARENT is not in syntax.h Thanks. -- Brian Millett - [ Thirteen/Psi Cop, "A Spider in the Web"] "Ours now. All ours."