From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Thien-Thi Nguyen Newsgroups: gmane.emacs.devel Subject: Re: [rudy@gnu.org: Re: [Savannah-hackers] [teirllm@dms.auburn.edu: Re: emacs/src/regex.c]] Date: Thu, 25 Dec 2003 16:21:09 -0500 Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: References: <20031225145032.GA15377@fencepost> <20031225182116.GB10051@fencepost> Reply-To: ttn@glug.org NNTP-Posting-Host: deer.gmane.org X-Trace: sea.gmane.org 1072387395 29784 80.91.224.253 (25 Dec 2003 21:23:15 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 25 Dec 2003 21:23:15 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Thu Dec 25 22:23:12 2003 Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1AZcwq-0005p2-00 for ; Thu, 25 Dec 2003 22:23:12 +0100 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1AZcwq-0006Ih-00 for ; Thu, 25 Dec 2003 22:23:12 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.24) id 1AZdtf-000704-GI for emacs-devel@quimby.gnus.org; Thu, 25 Dec 2003 17:23:59 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.24) id 1AZdtY-0006zy-SG for emacs-devel@gnu.org; Thu, 25 Dec 2003 17:23:52 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.24) id 1AZdsw-0006SD-DJ for emacs-devel@gnu.org; Thu, 25 Dec 2003 17:23:45 -0500 Original-Received: from [207.245.84.69] (helo=colo.agora-net.com) by monty-python.gnu.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.24) id 1AZdsR-00066N-5m; Thu, 25 Dec 2003 17:22:43 -0500 Original-Received: from ttn by colo.agora-net.com with local (Exim 3.34 #1) id 1AZcur-0003Ta-00; Thu, 25 Dec 2003 16:21:09 -0500 Original-To: rudy@gnu.org In-reply-to: <20031225182116.GB10051@fencepost> (message from Rudy Gevaert on Thu, 25 Dec 2003 13:21:16 -0500) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.2 Precedence: list List-Id: Emacs development discussions. List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:18841 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:18841 From: Rudy Gevaert Date: Thu, 25 Dec 2003 13:21:16 -0500 The files can be found in the project "gnulib", module "gnulib". thanks. for anyone interested, here is a simple script to make regex.[hc] available when checking out emacs from cvs: # usage: sh -ex cvs-update emacsroot=`pwd` cd .. cvs -d :ext:anoncvs@subversions.gnu.org:/cvsroot/gnulib \ checkout gnulib cd $emacsroot cvs update cd src rm -f regex.[hc] ln -s ../../gnulib/regex.h ln -s ../../gnulib/regex.c it presumes you have the disk space to completely check out gnulib, and that gnulib and ${emacsroot} are sibling directories. thi