From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.help Subject: Re: use-package :after ?? Date: Thu, 11 May 2023 09:14:19 +0300 Message-ID: <831qjn75tw.fsf@gnu.org> References: <83fs87c8wg.fsf@gnu.org> Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="21547"; mail-complaints-to="usenet@ciao.gmane.io" To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Thu May 11 08:14:01 2023 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1pwzYu-0005Op-IY for geh-help-gnu-emacs@m.gmane-mx.org; Thu, 11 May 2023 08:14:00 +0200 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1pwzY8-000410-Vm; Thu, 11 May 2023 02:13:13 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pwzY7-00040M-CN for help-gnu-emacs@gnu.org; Thu, 11 May 2023 02:13:11 -0400 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pwzY7-0005bj-3H for help-gnu-emacs@gnu.org; Thu, 11 May 2023 02:13:11 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=References:Subject:In-Reply-To:To:From:Date: mime-version; bh=qMX+ZeYNrCpXmzIWEY7aO1NsQahIxKXSSZhpnA7lkVA=; b=c3uf9i4HPa8c C8ElduvV2ErIZaMnaxf5f+yMGgbHeFH4pLWhY+VwRoIdh6JgzZ+C3KgvRaTQfzl35AKfvcgqfZZRW ux+4Rh+82XoXuuXG3ydTWFpbwzP/dnIWPyySdQwUz6gomJFBlLXn6bA0Zv6DDzDyr6Ofrl8NybH0a QREPipaGIGBLlFb1czZSUGKan7yqKgdFllvkwWt3+3laRHwq2ZQdd5hnn9IxXU+15yrUCm0HAt1Rk WLBlP2N8nFHmabNIF4MV+cY8AQ0PbJeS3d4ihkDqidURlLYYjWPX3jZIjVqWQL7zrB2rfzLcsHlYz dfFMoXHCjDpmZtZldfJBDA==; Original-Received: from [87.69.77.57] (helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pwzY6-0005Tg-FF for help-gnu-emacs@gnu.org; Thu, 11 May 2023 02:13:10 -0400 In-Reply-To: (message from David Masterson on Wed, 10 May 2023 20:24:18 -0700) X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.29 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-mx.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.emacs.help:143559 Archived-At: > From: David Masterson > Cc: help-gnu-emacs@gnu.org > Date: Wed, 10 May 2023 20:24:18 -0700 > > One thing I left out was that org-ac also depends on auto-complete-pcmp > making the :after more complicated -- namely does order make a > difference in how things should be loaded? Depends how? via autoloads or via :after? And why does it make thing more complicated? If package FOO should be loaded after BAR, and BAR should be loaded after BAZ, then the order I'd expect should be: BAZ, then BAR, then FOO. Right?