From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Drew Adams" Newsgroups: gmane.emacs.help Subject: RE: Working Around for cl-count Date: Thu, 29 Nov 2012 09:54:08 -0800 Message-ID: <8856DC71BF734E32A2DF74AE0BCBC783@us.oracle.com> References: <50B78818.7080906@gmail.com> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1354211669 10382 80.91.229.3 (29 Nov 2012 17:54:29 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 29 Nov 2012 17:54:29 +0000 (UTC) To: "'Eric James Michael Ritz'" , Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Nov 29 18:54:41 2012 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 1Te8Js-0005xN-1v for geh-help-gnu-emacs@m.gmane.org; Thu, 29 Nov 2012 18:54:40 +0100 Original-Received: from localhost ([::1]:42802 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Te8Jg-0006ZP-TE for geh-help-gnu-emacs@m.gmane.org; Thu, 29 Nov 2012 12:54:28 -0500 Original-Received: from eggs.gnu.org ([208.118.235.92]:58061) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Te8JY-0006Z6-Ly for help-gnu-emacs@gnu.org; Thu, 29 Nov 2012 12:54:24 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Te8JX-0001uv-Ng for help-gnu-emacs@gnu.org; Thu, 29 Nov 2012 12:54:20 -0500 Original-Received: from fencepost.gnu.org ([2001:4830:134:3::e]:37647) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Te8JX-0001uE-Kd for help-gnu-emacs@gnu.org; Thu, 29 Nov 2012 12:54:19 -0500 Original-Received: from [2001:4830:134:3::10] (port=34551 helo=eggs.gnu.org) by fencepost.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1Te8JX-0004lb-3s for gnu-emacs-help@gnu.org; Thu, 29 Nov 2012 12:54:19 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Te8JR-0001gd-By for gnu-emacs-help@gnu.org; Thu, 29 Nov 2012 12:54:18 -0500 Original-Received: from userp1040.oracle.com ([156.151.31.81]:18116) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Te8JR-0001fx-4a for gnu-emacs-help@gnu.org; Thu, 29 Nov 2012 12:54:13 -0500 Original-Received: from acsinet21.oracle.com (acsinet21.oracle.com [141.146.126.237]) by userp1040.oracle.com (Sentrion-MTA-4.2.2/Sentrion-MTA-4.2.2) with ESMTP id qATHs9od020972 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Thu, 29 Nov 2012 17:54:10 GMT Original-Received: from acsmt356.oracle.com (acsmt356.oracle.com [141.146.40.156]) by acsinet21.oracle.com (8.14.4+Sun/8.14.4) with ESMTP id qATHs9us027487 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 29 Nov 2012 17:54:09 GMT Original-Received: from abhmt117.oracle.com (abhmt117.oracle.com [141.146.116.69]) by acsmt356.oracle.com (8.12.11.20060308/8.12.11) with ESMTP id qATHs9If012802; Thu, 29 Nov 2012 11:54:09 -0600 Original-Received: from dradamslap1 (/130.35.178.8) by default (Oracle Beehive Gateway v4.0) with ESMTP ; Thu, 29 Nov 2012 09:54:08 -0800 X-Mailer: Microsoft Office Outlook 11 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.6157 In-Reply-To: <50B78818.7080906@gmail.com> Thread-Index: Ac3OWeTSU3z6mKx0SIKJdS3RQIB6JAAAFqjQ X-Source-IP: acsinet21.oracle.com [141.146.126.237] X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.4.x-2.6.x [generic] X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2001:4830:134:3::e 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:87944 Archived-At: > Versions of Emacs less than version 24.2 complain about the lack of > `cl-count`. In older versions, `cl-count' is called `count'. Use something like this: (if (fboundp 'cl-count) #'cl-count #'count)