summaryrefslogtreecommitdiffstats
path: root/sysif.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2015-09-13 21:11:39 -0700
committerKaz Kylheku <kaz@kylheku.com>2015-09-13 21:11:39 -0700
commit56633b2640b1f58950d1e6781a2fb859d6a1d687 (patch)
tree6bc43cea676d9abd89a2fc43ef955b8eb130f053 /sysif.c
parent09d2998e5cf4587a466aeccd759c48b0c7eca1bc (diff)
downloadtxr-56633b2640b1f58950d1e6781a2fb859d6a1d687.tar.gz
txr-56633b2640b1f58950d1e6781a2fb859d6a1d687.tar.bz2
txr-56633b2640b1f58950d1e6781a2fb859d6a1d687.zip
Implement ~/.txr_profile mechanism.
* parser.c (load_rcfile): New function. (repl): Compute profile file name and try to load it before entering loop. * sysif.c (statp): Linkage becomes external. * sysif.h (statp): Declaration updated. * txr.1: Documented.
Diffstat (limited to 'sysif.c')
-rw-r--r--sysif.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysif.c b/sysif.c
index 1d858820..a077ea4c 100644
--- a/sysif.c
+++ b/sysif.c
@@ -643,7 +643,7 @@ static val stat_impl(val obj, int (*statfn)(val, struct stat *),
#endif
}
-static val statp(val path)
+val statp(val path)
{
return stat_impl(path, w_stat, lit("stat"));
}