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: Seiji Zenitani
Subject: Re: OS X: load-path on self-contained build
Date: Mon, 30 Jul 2007 22:13:30 -0400

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]