From: Richard Stallman <rms@gnu.org>
To: emacs-devel@gnu.org
Subject: Re: OS X: load-path on self-contained build
Date: Mon, 30 Jul 2007 16:48:33 -0400 [thread overview]
Message-ID: <E1IFcAL-000491-8B@fencepost.gnu.org> (raw)
In-Reply-To: <6450652C-3FFD-435D-9B85-038C12AA2AE1@mac.com> (message from Seiji Zenitani on Sun, 15 Jul 2007 18:11:02 -0400)
[I sent this message two weeks ago but did not get a response.]
Would those who maintain Emacs on MacOS please DTRT
and ack?
The attached patch (by R. Yoshitake; GPL) works fine for me.
Is there any potential side-effects?
Seiji Zenitani
zenitani@mac.com
--- src/mac.c.orig 2007-04-20 09:26:45.000000000 -0400
+++ src/mac.c 2007-06-09 18:54:42.000000000 -0400
@@ -5331,12 +5335,12 @@
q[0] = '\0';
strcpy (p, app_bundle_pathname);
- strcat (p, "/Contents/Resources/lisp");
+ strcat (p, "/Contents/Resources/site-lisp");
if (stat (p, &st) == 0 && (st.st_mode & S_IFMT) == S_IFDIR)
strcat (q, p);
strcpy (p, app_bundle_pathname);
- strcat (p, "/Contents/Resources/leim");
+ strcat (p, "/Contents/Resources/lisp");
if (stat (p, &st) == 0 && (st.st_mode & S_IFMT) == S_IFDIR)
{
if (q[0] != '\0')
@@ -5345,7 +5349,7 @@
}
strcpy (p, app_bundle_pathname);
- strcat (p, "/Contents/Resources/site-lisp");
+ strcat (p, "/Contents/Resources/leim");
if (stat (p, &st) == 0 && (st.st_mode & S_IFMT) == S_IFDIR)
{
if (q[0] != '\0')
next prev parent reply other threads:[~2007-07-30 20:48 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-07-10 3:54 OS X: load-path on self-contained build Seiji Zenitani
2007-07-10 22:01 ` Richard Stallman
2007-07-15 22:11 ` Seiji Zenitani
2007-07-16 15:49 ` Richard Stallman
2007-07-23 22:30 ` Richard Stallman
2007-07-30 20:48 ` Richard Stallman [this message]
2007-07-31 2:13 ` Seiji Zenitani
2007-08-01 21:46 ` Vinicius Jose Latorre
2007-08-01 22:06 ` Seiji Zenitani
2007-08-01 22:23 ` Vinicius Jose Latorre
2007-08-01 22:40 ` Glenn Morris
2007-08-01 23:13 ` Vinicius Jose Latorre
2007-08-02 0:08 ` Vinicius Jose Latorre
2007-08-06 16:33 ` Richard Stallman
2007-08-06 18:08 ` Glenn Morris
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
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=E1IFcAL-000491-8B@fencepost.gnu.org \
--to=rms@gnu.org \
--cc=emacs-devel@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 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.