From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Tim Visher Newsgroups: gmane.emacs.help Subject: Re: What do I do after installing csv-mode with elpa? Date: Sun, 12 May 2013 15:05:09 -0400 Message-ID: References: <1368292799953-285754.post@n5.nabble.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 1368385572 24916 80.91.229.3 (12 May 2013 19:06:12 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 12 May 2013 19:06:12 +0000 (UTC) Cc: emacs To: bsamek Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sun May 12 21:06:13 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 1Ubbb1-0003zp-3z for geh-help-gnu-emacs@m.gmane.org; Sun, 12 May 2013 21:06:11 +0200 Original-Received: from localhost ([::1]:43871 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ubbb0-0007Bx-J9 for geh-help-gnu-emacs@m.gmane.org; Sun, 12 May 2013 15:06:10 -0400 Original-Received: from eggs.gnu.org ([208.118.235.92]:45987) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ubbah-0007Bq-6l for Help-gnu-emacs@gnu.org; Sun, 12 May 2013 15:05:53 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Ubbaf-0002RH-V1 for Help-gnu-emacs@gnu.org; Sun, 12 May 2013 15:05:51 -0400 Original-Received: from mail-ve0-x22a.google.com ([2607:f8b0:400c:c01::22a]:61259) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ubbaf-0002R7-RV for Help-gnu-emacs@gnu.org; Sun, 12 May 2013 15:05:49 -0400 Original-Received: by mail-ve0-f170.google.com with SMTP id 14so1206687vea.1 for ; Sun, 12 May 2013 12:05:49 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:mime-version:in-reply-to:references:from:date:message-id :subject:to:cc:content-type:content-transfer-encoding; bh=BDDsvdoqaHMMpuNZRPqZVb2eOjtPCfXcf44wkGpIW5Y=; b=EHHtcroElfdiX/kLkORw2dmw9EiRUTsQLwKoWWdHiBBNNuRWmjZvR+QMucszANNZ+t IXZ3RdT56IV3jDmjYAP8EhhVALP9iz6oHZcnvZoF2MjxHlw9PubUcJneBVZD9ieSWo5F ICeqZLkiqeKMgzJnyEx/KL67P7yNHGQ/HnCEXcIEEs4Pf89mNDlzy3ryNJcj/WPnePFo d2sy85qTp0VM8cjgMO2j2vOWMtO5DaZjk06AIRgdeLAaMklJjVD1uwR7KA/8E5pVfxZM W56zAgjBRcjpx8Otwv0gXqSZb/3h34Es/inTckxrZ3kOq/W/T0eDvdvGywIz161gN0g0 V+PA== X-Received: by 10.52.18.206 with SMTP id y14mr14190856vdd.29.1368385549111; Sun, 12 May 2013 12:05:49 -0700 (PDT) Original-Received: by 10.220.201.7 with HTTP; Sun, 12 May 2013 12:05:09 -0700 (PDT) In-Reply-To: <1368292799953-285754.post@n5.nabble.com> X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2607:f8b0:400c:c01::22a 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:90671 Archived-At: Hi Brian, On Sat, May 11, 2013 at 1:20 PM, bsamek wrote: > I've installed csv-mode with 'M-x list-packages' and typing 'i x' at > csv-mode. It's now listed as installed. However, it's not available with > 'M-x csv-mode'. Is there an ELPA-specific way of making an installed pack= age > available that I'm missing? The variable package-enable-at-startup is t. Looks like 1.5.0 (which is the version I get when installing csv-mode from package.el) has a coding error. Unbalanced parens at line 1134. My package install showed that with error text like: Compiling file =E2=80=A6/.emacs.d/elpa/csv-mode-1.50/csv-mode-pkg.el at Sun May 12 14:58:58 2013 Entering directory `=E2=80=A6/.emacs.d/elpa/csv-mode-1.50/' Error: Unmatched bracket or quote Which yours may or may not have done as well. Anyway, this is after the mode definition in `csv-mode.el` so while there's definitely something wrong with that file, I am still able to find a `.csv` file and have it automatically load up csv mode. Obviously functionality defined after the coding error will not work as it won't have loaded. Contact the maintainer or maybe open a patch up? Should be an easy fix. Hope this points you down the right path! -- In Christ, Timmy V. http://blog.twonegatives.com/ http://five.sentenc.es/ -- Spend less time on mail