emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: OS X: load-path on self-contained build


From: Vinicius Jose Latorre
Subject: Re: OS X: load-path on self-contained build
Date: Wed, 01 Aug 2007 18:46:48 -0300
User-agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.1.5) Gecko/20070716 SeaMonkey/1.1.3


Done.

Patch applied in trunk and Emacs 22 branch.


Seiji Zenitani wrote:
Hi,

Could anyone please deal with the below patch? According to the CVS, that part was written by Dr. Andrew Choi 5 years ago (revision 1.9, Fri Aug 16 02:30:21 2002 UTC). I noticed that comment strings (/* ... */) near the relevant lines should reflect the change, too.

Seiji Zenitani
address@hidden

On 2007/07/15, at 18:11, Seiji Zenitani wrote:
On 2007/07/10, at 18:01, Richard Stallman wrote:

Would someone please fix this, then ack?


The attached patch (by R. Yoshitake; GPL) works fine for me.
Is there any potential side-effects?


Seiji Zenitani
address@hidden


--- 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')




reply via email to

[Prev in Thread] Current Thread [Next in Thread]