From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: Martin Newsgroups: gmane.emacs.help Subject: Re: Mark package as installed when use git Date: Mon, 12 Jun 2017 20:24:57 +0200 Message-ID: <878tkxgj2e.fsf@kaffanke.at> References: <877f0hs64f.fsf@kaffanke.at> NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Trace: blaine.gmane.org 1497291941 5661 195.159.176.226 (12 Jun 2017 18:25:41 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Mon, 12 Jun 2017 18:25:41 +0000 (UTC) Cc: help-gnu-emacs@gnu.org To: John =?utf-8?Q?Ankarstr=C3=B6m?= Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon Jun 12 20:25:27 2017 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by blaine.gmane.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dKU1m-0000im-Jb for geh-help-gnu-emacs@m.gmane.org; Mon, 12 Jun 2017 20:25:26 +0200 Original-Received: from localhost ([::1]:39508 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dKU1r-0002vL-Uv for geh-help-gnu-emacs@m.gmane.org; Mon, 12 Jun 2017 14:25:31 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:34949) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dKU1Q-0002uy-Dp for help-gnu-emacs@gnu.org; Mon, 12 Jun 2017 14:25:05 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dKU1N-0005eI-A4 for help-gnu-emacs@gnu.org; Mon, 12 Jun 2017 14:25:04 -0400 Original-Received: from box.primewood.at ([138.68.68.139]:40312) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dKU1M-0005e5-Vz for help-gnu-emacs@gnu.org; Mon, 12 Jun 2017 14:25:01 -0400 Original-Received: from authenticated-user (box.primewood.at [138.68.68.139]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by box.primewood.at (Postfix) with ESMTPSA id E90C240129; Mon, 12 Jun 2017 20:24:58 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=kaffanke.at; s=mail; t=1497291899; bh=0dXGJKFZDJJ8vIc9ra8y8FpqBdGOlQj0qMp+3qEw3Yg=; h=References:From:To:Cc:Subject:In-reply-to:Date:From; b=iDcZMuy7QYwcBY/MDybyYiZFSH5g2sd5iF9nDI5yQEMQORglY+xI3r+2mC4uHXn2Q C5xij+jKnE8DZcYOfuCuambSGNeBA0eZiQrWgq/isqkIgtncPCG5ZUrtnSZR5y8+uE 4pvycfyjFgmEXua8RPtoYi2hu+IeCiP7jFinaJ7SK7nq+8M5Gg51Rx21ATWEJF+bdU biuLGwwGKSKsMSkfGMq3BDvnfx7c2ELHXM7UoE+O+RbKQAnlw53ald84RNZoAOlhTj uaWGMxJdWxqnXD4xnSXNMr5Hi0qfjYKiraYB0P3qSGFh6m+0R0ZkE7WEfqRMHBD0lM 6ll5GvnQXcGPw== In-reply-to: X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 138.68.68.139 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.21 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" Xref: news.gmane.org gmane.emacs.help:113431 Archived-At: Hi John, John Ankarstr=C3=B6m writes: > Quick correction: > > john@ankarstrom.se (John Ankarstr=C3=B6m) writes: > >> So, the following should suffice: >> >>> (add-to-list 'load-path (concat my-user-emacs-directory >>> "contrib/org-mode/lisp")) >> >> (use-package org >> :load-path "contrib/org-mode/lisp") > > After sending the message I realize I might have been > unclear: I didn't mean to include the `add-to-list' code, which I > accidentally quoted from your message, Martin. > > Sorry about that! If you use `use-package', you shouldn't need to > manually edit `load-path'. Now I'm a bit unclear. :( I changed my config from init.el with some load-path for mu4e and org-mode to this: https://github.com/novoid/dot-emacs Short: The org mode is loaded before the use-package in this setting, so I don't really know where to change or put your code in. Thanks, - Martin --=20 Thanks for your help!