From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: joaotavora@gmail.com (=?utf-8?B?Sm/Do28gVMOhdm9yYQ==?=) Newsgroups: gmane.emacs.help Subject: Re: Adapting code to cl-lib Date: Mon, 30 Dec 2013 21:48:48 +0000 Message-ID: <87r48uqabj.fsf@gmail.com> References: <87a9fjl007.fsf@gmail.com> <87wqimzu69.fsf@gmail.com> <87zjnijywx.fsf@gmail.com> <87ob3yzd7q.fsf@gmail.com> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1388440267 31546 80.91.229.3 (30 Dec 2013 21:51:07 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 30 Dec 2013 21:51:07 +0000 (UTC) Cc: help-gnu-emacs@gnu.org To: Thierry Volpiatto Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon Dec 30 22:51:12 2013 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1Vxkjv-0005TW-F8 for geh-help-gnu-emacs@m.gmane.org; Mon, 30 Dec 2013 22:51:11 +0100 Original-Received: from localhost ([::1]:59889 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Vxkjv-0002eK-5G for geh-help-gnu-emacs@m.gmane.org; Mon, 30 Dec 2013 16:51:11 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:54323) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Vxkjc-0002dL-UC for help-gnu-emacs@gnu.org; Mon, 30 Dec 2013 16:51:01 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VxkjT-00017F-T3 for help-gnu-emacs@gnu.org; Mon, 30 Dec 2013 16:50:52 -0500 Original-Received: from mail-wg0-x236.google.com ([2a00:1450:400c:c00::236]:42296) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VxkjT-000174-MM for help-gnu-emacs@gnu.org; Mon, 30 Dec 2013 16:50:43 -0500 Original-Received: by mail-wg0-f54.google.com with SMTP id n12so10727583wgh.9 for ; Mon, 30 Dec 2013 13:50:42 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version:content-type:content-transfer-encoding; bh=hrtXKpg2sl2FP07XXArc3DQ+x22tjfb6MJ9u/8WoFms=; b=ASvq1Yquv8kaZ06QUmEmkpRzgz1ObIJmStsVSFradMFXohkNZ6dR7NmT5uUXFECq9W 3JdsdmTCAhUhovY2Kew29v+2TlXam7zwsOmfsnD21wGkDW0OpKTUblqrTOi6U9bO7hfB Kb5LQJvdxaPJ1J83uB01xNvNkwPJ90OAw2r3c1LZcZui+EqEpYYsYcnwNZsK0fl0E5gR etxCvwEht1RBPJuflb4KxNUW86gAWNDW6HddMSh+jMgpUzAv6pBaosgYD4H18HpZYh1Z 1J2XBaYZGLM0mbPyext5TlOhoIVr6FhJKNlM6jWbZuvyGGfuHDkQ3aXT9vIkvgsCjb+F JMJg== X-Received: by 10.194.62.8 with SMTP id u8mr1397795wjr.68.1388440242759; Mon, 30 Dec 2013 13:50:42 -0800 (PST) Original-Received: from kitaj.yourcompany.com (66.207.108.93.rev.vodafone.pt. [93.108.207.66]) by mx.google.com with ESMTPSA id gz5sm19425168wib.10.2013.12.30.13.50.41 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Mon, 30 Dec 2013 13:50:41 -0800 (PST) In-Reply-To: <87ob3yzd7q.fsf@gmail.com> (Thierry Volpiatto's message of "Mon, 30 Dec 2013 14:21:29 +0100") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3.50 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2a00:1450:400c:c00::236 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:95209 Archived-At: Thierry Volpiatto writes: > You can find a list of symbols to replace in cl.el#176. Thanks, I took that list and wrote a replace-regexp expression. But just a regexp won't cut since it will think (let ((position 5)) ...) is a call to cl-position, which is quite wrong. I ended up fixing these by hand. A real tool must use the byte-compiler's output, or hop on the byte-compiler itself. Probably not worth it... Jo=C3=A3o