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: Richard Stallman
Subject: Re: OS X: load-path on self-contained build
Date: Mon, 23 Jul 2007 18:30:44 -0400

Would those who maintain Emacs on MacOS please DTRT?


    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]