From: Achim Gratz <Stromeko@nexgo.de>
To: emacs-orgmode@gnu.org
Subject: Re: Org release 7.8.07 (BUGFIX-only release)
Date: Mon, 02 Apr 2012 21:53:08 +0200 [thread overview]
Message-ID: <87vclhap23.fsf@Rainer.invalid> (raw)
In-Reply-To: 87r4w7pwhm.fsf@Rainer.invalid
Achim Gratz writes:
> (defmacro org-find-library-name (library)
> (if (fboundp 'find-library-name)
> `(file-name-directory (find-library-name ,library))
> ; XEmacs does not have `find-library-name'
> `(file-name-directory (find-library ,library nil (lambda (lib ignore) lib)))))
Scratch that, of course it needs to evaluate to a function... better
something like this:
(defmacro org-compat-when-fboundp (symbol form1 form2)
(if (fboundp symbol)
form1
form2))
(org-compat-when-fboundp find-library-name
(declare-function find-library-name "find-func" (library))
(declare-function find-library "lib-complete" (library codesys func)))
(defun org-find-library-name (library)
(org-compat-when-fboundp find-library-name
(file-name-directory (find-library-name library))
; XEmacs does not have `find-library-name'
(file-name-directory (find-library library nil (lambda (lib ignore) lib)))))
Regards,
Achim.
--
+<[Q+ Matrix-12 WAVE#46+305 Neuron microQkb Andromeda XTk Blofeld]>+
SD adaptations for KORG EX-800 and Poly-800MkII V0.9:
http://Synth.Stromeko.net/Downloads.html#KorgSDada
next prev parent reply other threads:[~2012-04-02 19:53 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-03-31 10:07 Org release 7.8.07 (BUGFIX-only release) Bastien
2012-03-31 13:22 ` Achim Gratz
2012-04-01 8:37 ` Bastien
2012-04-01 10:39 ` Achim Gratz
2012-04-02 19:53 ` Achim Gratz [this message]
2012-03-31 17:00 ` Eric Schulte
2012-03-31 17:05 ` Eric Schulte
2012-04-01 8:40 ` Bastien
2012-04-01 10:03 ` Bastien
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.orgmode.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87vclhap23.fsf@Rainer.invalid \
--to=stromeko@nexgo.de \
--cc=emacs-orgmode@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).