From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: sam jesse Newsgroups: gmane.emacs.help Subject: Re: function error at start up. Date: Mon, 27 Jul 2009 07:30:05 +1000 Message-ID: References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: multipart/alternative; boundary=0016363105cd7ed6ec046fa28a33 X-Trace: ger.gmane.org 1248643845 13322 80.91.229.12 (26 Jul 2009 21:30:45 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 26 Jul 2009 21:30:45 +0000 (UTC) Cc: help-gnu-emacs@gnu.org To: Drew Adams Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sun Jul 26 23:30:38 2009 Return-path: Envelope-to: geh-help-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 1MVBIj-00060i-6i for geh-help-gnu-emacs@m.gmane.org; Sun, 26 Jul 2009 23:30:37 +0200 Original-Received: from localhost ([127.0.0.1]:53395 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MVBIi-0007eU-Ap for geh-help-gnu-emacs@m.gmane.org; Sun, 26 Jul 2009 17:30:36 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MVBIJ-0007eD-Cn for help-gnu-emacs@gnu.org; Sun, 26 Jul 2009 17:30:11 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MVBII-0007e1-SW for help-gnu-emacs@gnu.org; Sun, 26 Jul 2009 17:30:11 -0400 Original-Received: from [199.232.76.173] (port=48477 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MVBII-0007dy-Mf for help-gnu-emacs@gnu.org; Sun, 26 Jul 2009 17:30:10 -0400 Original-Received: from qw-out-1920.google.com ([74.125.92.147]:51953) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MVBIH-0007gA-Nw for help-gnu-emacs@gnu.org; Sun, 26 Jul 2009 17:30:10 -0400 Original-Received: by qw-out-1920.google.com with SMTP id 5so1748551qwf.24 for ; Sun, 26 Jul 2009 14:30:05 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type; bh=a6yBfU0n2ps8uhz7/WmpRlpzgAXJPkqj5K74DJcD66U=; b=ALfUXD7CZRhPdhp7n75eauslwt3YvxT3Fa29inuaLgjpbl7GJK5uX3eM6hNNwj/WtL rYQPwavwFf2rNgwN10MbfzU/pDU9qEvLyHW94aXeLHoI1wAWL3Tc0SseHP8o2CY0aQWd Nnqb7Mg+5jtrbgIcrzuiKtfTKhj8XUlCpnRQQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=nt6/X5Dj7CGSxJaugVaucCBh/81uc+ZNErH5q9LZiWu7ViYPPbZdeu5ki/ys+bobf4 22F6eQSm4qZFhaCBigZZrlJ0jtd0n6aB60ur58hyFc9a89I8TmUyK7HBLH8gWGOnoIyL C6JWSyV7j94GkES+plfWQZcmOnqpaSE2U9ztg= Original-Received: by 10.229.99.212 with SMTP id v20mr1207583qcn.28.1248643805795; Sun, 26 Jul 2009 14:30:05 -0700 (PDT) In-Reply-To: X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 2) X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:66408 Archived-At: --0016363105cd7ed6ec046fa28a33 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Thank you. that fixed it. Can I install Cedet and the ECB "code browser window" in my Windows XP box where I currently have emacs installed? I have GNU Emacs 22.3.1 (i386-mingw-nt5.1.2600). On Mon, Jul 27, 2009 at 3:52 AM, Drew Adams wrote: > >>> (add-to-list 'load-path ("~/.emacs.d/plugins/color-theme-6.6.0")) > >>> Invalid function: ~/.emacs.d/plugins/color-theme-6.6.0 > >> > >> You need to quote both args to `add-to-list': > >> (add-to-list 'load-path '("~/.emacs.d/plugins/color-theme-6.6.0")) > > > > when I do as you suggested. I get > > File error: Cannot open load file, color-theme > > Oh, right; sorry about that. The second arg to `add-to-list' here needs to > be a > directory name, not a list of directory names: > > (add-to-list 'load-path "~/.emacs.d/plugins/color-theme-6.6.0") > > You are adding the element "~/.emacs.d/plugins/color-theme-6.6.0" to the > value > of variable `load-path'. > > > > > --0016363105cd7ed6ec046fa28a33 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Thank you. that fixed it.

Can I install Cedet and the ECB "code= browser window" in my Windows XP box where I currently have emacs ins= talled?
I have GNU Emacs 22.3.1 (i386-mingw-nt5.1.2600).



On Mon, Jul 27, 2009 at 3:52 AM, Drew Adams <drew.adams@oracl= e.com> wrote:
>>> (add-to-list 'load-path ("~/.emacs.= d/plugins/color-theme-6.6.0"))
>>> Invalid function: ~/.emacs.d/plugins/color-theme-6.6.0
>>
>> You need to quote both args to `add-to-list':
>> (add-to-list 'load-path '("~/.emacs.d/plugins/color-t= heme-6.6.0"))
>
> when I do as you suggested. I get
> File error: Cannot open load file, color-theme

Oh, right; sorry about that. The second arg to `add-to-list' here= needs to be a
directory name, not a list of directory names:

(add-to-list 'load-path "~/.emacs.d/plugins/color-theme-6.6.0"= ;)

You are adding the element "~/.emacs.d/plugins/color-theme-6.6.0= " to the value
of variable `load-path'.





--0016363105cd7ed6ec046fa28a33--