From mboxrd@z Thu Jan 1 00:00:00 1970 From: Glenn Morris Subject: bug#14379: Several Org source files cannot be loaded in isolation Date: Sat, 11 May 2013 14:24:01 -0400 Message-ID: References: <87vc6p1ob0.fsf@Rainer.invalid> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([208.118.235.92]:51929) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UbETP-0001ta-1k for emacs-orgmode@gnu.org; Sat, 11 May 2013 14:24:48 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UbETN-0005VP-L4 for emacs-orgmode@gnu.org; Sat, 11 May 2013 14:24:46 -0400 Received: from debbugs.gnu.org ([140.186.70.43]:60921) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UbETN-0005V9-Gk for emacs-orgmode@gnu.org; Sat, 11 May 2013 14:24:45 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.72) (envelope-from ) id 1UbETe-00052w-4k for emacs-orgmode@gnu.org; Sat, 11 May 2013 14:25:02 -0400 Sender: debbugs-submit-bounces@debbugs.gnu.org Resent-Message-ID: In-Reply-To: <87vc6p1ob0.fsf@Rainer.invalid> (Achim Gratz's message of "Sat, 11 May 2013 18:20:03 +0200") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: 14379@debbugs.gnu.org (Please keep the debbugs address included. It is basically an alias for the org-mode list in this instance.) Achim Gratz wrote: > Reimplementation with pcase should fix that unless this is then resolved > at compile-time? pcase probably doesn't exist in all the ancient Emacs versions that you want to support? In any case, it will case cause needless loading of pcase at run-time. I'd use good old `cond' if I were you. Actually, `if' will suffice in this case. Actually actually, why not (if (executable-find "ctags-exuberant") "ctags-exuberant" "ctags") ?