comparison src/mac.c @ 78384:ccca2e6b8cd9

Adjust load-path comment
author Vinicius Jose Latorre <viniciusjl@ig.com.br>
date Wed, 01 Aug 2007 22:20:41 +0000
parents f97cdcfcf9ee
children e4c75e9b905b
comparison
equal deleted inserted replaced
78383:f97cdcfcf9ee 78384:ccca2e6b8cd9
5320 CFRelease (cf_app_bundle_pathname); 5320 CFRelease (cf_app_bundle_pathname);
5321 5321
5322 /* P should have sufficient room for the pathname of the bundle plus 5322 /* P should have sufficient room for the pathname of the bundle plus
5323 the subpath in it leading to the respective directories. Q 5323 the subpath in it leading to the respective directories. Q
5324 should have three times that much room because EMACSLOADPATH can 5324 should have three times that much room because EMACSLOADPATH can
5325 have the value "<path to lisp dir>:<path to leim dir>:<path to 5325 have the value "<path to site-lisp dir>:<path to lisp dir>:<path
5326 site-lisp dir>". */ 5326 to leim dir>". */
5327 p = (char *) alloca (app_bundle_pathname_len + 50); 5327 p = (char *) alloca (app_bundle_pathname_len + 50);
5328 q = (char *) alloca (3 * app_bundle_pathname_len + 150); 5328 q = (char *) alloca (3 * app_bundle_pathname_len + 150);
5329 if (!getenv ("EMACSLOADPATH")) 5329 if (!getenv ("EMACSLOADPATH"))
5330 { 5330 {
5331 q[0] = '\0'; 5331 q[0] = '\0';