emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* find-library-name, used by org-reload, missing on XEmacs
@ 2009-03-31 18:38 Tony E. Bennett
  2009-04-05 14:18 ` Carsten Dominik
  0 siblings, 1 reply; 4+ messages in thread
From: Tony E. Bennett @ 2009-03-31 18:38 UTC (permalink / raw)
  To: emacs-orgmode


Hi

org-reload needs 'find-library-name', which is missing on XEmacs v21.5
at least.   However there is 'find-library' which can be coerced into
providing the filename:

  ;; hack - XEmacs does not have find-library-name, needed by org-reload.
  (when (not (fboundp 'find-library-name))
    (require 'find-func)
    ;; still not found?   then create it if find-library exists, as it does on xemacs
    (when (and (not (fboundp 'find-library-name))
               (fboundp 'find-library))
      (defun find-library-name-helper (filename ignored-codesys)
        filename)
      (defun find-library-name (library)
        (find-library library nil 'find-library-name-helper))
      ))


thanks

--tony

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

end of thread, other threads:[~2012-05-30 16:10 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-03-31 18:38 find-library-name, used by org-reload, missing on XEmacs Tony E. Bennett
2009-04-05 14:18 ` Carsten Dominik
2012-05-30  6:34   ` unfound defuns and catch forms on XEmacs 21.5 (was: [Orgmode] find-library-name, used by org-reload, missing on XEmacs) Tim Howe
2012-05-30 16:09     ` unfound defuns and catch forms on XEmacs 21.5 Achim Gratz

Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).