From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Miguel A. Figueroa-Villanueva" Subject: org-publish.el breaks for XEmacs Date: Thu, 20 Mar 2008 00:18:11 -0400 Message-ID: <17f71bca0803192118g233ebaf8mf2207b84653f1f6e@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JcCEH-0007HP-Lr for emacs-orgmode@gnu.org; Thu, 20 Mar 2008 00:18:13 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JcCEG-0007Gr-VI for emacs-orgmode@gnu.org; Thu, 20 Mar 2008 00:18:13 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JcCEG-0007Gj-Qy for emacs-orgmode@gnu.org; Thu, 20 Mar 2008 00:18:12 -0400 Received: from wf-out-1314.google.com ([209.85.200.168]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JcCEG-00040z-Cq for emacs-orgmode@gnu.org; Thu, 20 Mar 2008 00:18:12 -0400 Received: by wf-out-1314.google.com with SMTP id 29so775964wff.24 for ; Wed, 19 Mar 2008 21:18:11 -0700 (PDT) Content-Disposition: inline List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Hello, I updated org-mode, but the following line in the org-publish.el broke the compilation for XEmacs. (require 'dired-aux) It appears that xemacs doesn't have the dired-aux package (at least my version 21.4.20 doesn't). If I comment out the require command it works. Hence, I would suggest the following addition to only require the package if it is an emacs installation: (setq running-xemacs (string-match "XEmacs\\|Lucid" emacs-version)) (if (not running-xemacs) (require 'dired-aux) ) Thoughts? --Miguel