all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* org-publish.el breaks for XEmacs
@ 2008-03-20  4:18 Miguel A. Figueroa-Villanueva
  2008-03-20 10:00 ` Carsten Dominik
  0 siblings, 1 reply; 3+ messages in thread
From: Miguel A. Figueroa-Villanueva @ 2008-03-20  4:18 UTC (permalink / raw)
  To: emacs-orgmode

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

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2008-03-20 10:09 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-03-20  4:18 org-publish.el breaks for XEmacs Miguel A. Figueroa-Villanueva
2008-03-20 10:00 ` Carsten Dominik
2008-03-20 10:09   ` Miguel A. Figueroa-Villanueva

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.