From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Juanma Barranquero Newsgroups: gmane.emacs.devel Subject: Warning about `user-emacs-directory' Date: Mon, 8 Aug 2005 12:46:59 +0200 Message-ID: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: sea.gmane.org 1123499118 26107 80.91.229.2 (8 Aug 2005 11:05:18 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 8 Aug 2005 11:05:18 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Aug 08 13:05:16 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1E25Qf-0005Z8-8c for ged-emacs-devel@m.gmane.org; Mon, 08 Aug 2005 13:04:25 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1E25Tf-0002t3-Fb for ged-emacs-devel@m.gmane.org; Mon, 08 Aug 2005 07:07:31 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1E25Ot-0000Kk-Vt for emacs-devel@gnu.org; Mon, 08 Aug 2005 07:02:36 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1E25OC-0000DH-NZ for emacs-devel@gnu.org; Mon, 08 Aug 2005 07:02:05 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1E25O6-0008VW-Co for emacs-devel@gnu.org; Mon, 08 Aug 2005 07:01:46 -0400 Original-Received: from [64.233.182.193] (helo=nproxy.gmail.com) by monty-python.gnu.org with esmtp (Exim 4.34) id 1E25NU-0003Qh-4E for emacs-devel@gnu.org; Mon, 08 Aug 2005 07:01:08 -0400 Original-Received: by nproxy.gmail.com with SMTP id h2so224738nfe for ; Mon, 08 Aug 2005 03:46:59 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=mpwhfl3Ow7QhgfWbWMxHyZ4PsTT5R5Wgw5r6myXxfHHHLXuYBz+nWbB2/m38/tfj7LFojZBlRR1YqyxrM4YxhrT7WjPXN3Ztf+X1avCpZBzi1nSe1qgyFmsm8b8JwC53uSBNTNUquwC4EaHtZXemLVl52Kef9UUNv8K07WqxMxc= Original-Received: by 10.48.250.9 with SMTP id x9mr153053nfh; Mon, 08 Aug 2005 03:46:59 -0700 (PDT) Original-Received: by 10.48.250.5 with HTTP; Mon, 8 Aug 2005 03:46:59 -0700 (PDT) Original-To: Eli Zaretskii , Emacs Devel Content-Disposition: inline X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:41689 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:41689 Compiling cmuscheme.el warns about a non-existent `user-emacs-directory'. Was the change shown in patch below the intended effect, or is a non-GNU Emacs variable? --=20 /L/e/k/t/u Index: lisp/cmuscheme.el =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /cvsroot/emacs/emacs/lisp/cmuscheme.el,v retrieving revision 1.39 diff -u -2 -r1.39 cmuscheme.el --- lisp/cmuscheme.el=096 Aug 2005 22:13:42 -0000=091.39 +++ lisp/cmuscheme.el=098 Aug 2005 10:45:50 -0000 @@ -273,5 +273,5 @@ (if (file-exists-p start-file) start-file - (let ((start-file (concat user-emacs-directory name))) + (let ((start-file (concat "~/.emacs.d/" name))) (and (file-exists-p start-file) start-file)))))