Skip to content
Snippets Groups Projects
Commit daa4d4f7 authored by rswindell's avatar rswindell
Browse files

load() now supports filenames relative to the exec or mods dir

(e.g. load("somedir/somefile.js" would load "exec/somedir/somefile.js") using
new xpdev function isfullpath().
parent d2c11421
No related branches found
No related tags found
No related merge requests found
......@@ -123,12 +123,13 @@ js_load(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
}
errno = 0;
if(strcspn(filename,"/\\")==strlen(filename)) {
if(isfullpath(filename))
strcpy(path,filename);
else {
sprintf(path,"%s%s",cfg->mods_dir,filename);
if(cfg->mods_dir[0]==0 || !fexistcase(path))
sprintf(path,"%s%s",cfg->exec_dir,filename);
} else
strcpy(path,filename);
}
JS_ClearPendingException(cx);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment