aboutsummaryrefslogtreecommitdiffstats
path: root/rc.c
diff options
context:
space:
mode:
authorFumitoshi UKAI <ukai@debian.or.jp>2003-01-17 17:06:57 +0000
committerFumitoshi UKAI <ukai@debian.or.jp>2003-01-17 17:06:57 +0000
commit264b3e35ec0ba487e0c8a0af5237c81fd0d4b3c3 (patch)
tree43d60426de87a3dcfc3947b6ed792ab29499d2fe /rc.c
parent[w3m-dev 03647] expandName() and expandPath() (diff)
downloadw3m-264b3e35ec0ba487e0c8a0af5237c81fd0d4b3c3.tar.gz
w3m-264b3e35ec0ba487e0c8a0af5237c81fd0d4b3c3.zip
fix indent
Diffstat (limited to '')
-rw-r--r--rc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/rc.c b/rc.c
index cdb68ff..8055c26 100644
--- a/rc.c
+++ b/rc.c
@@ -1,4 +1,4 @@
-/* $Id: rc.c,v 1.77 2003/01/17 17:06:05 ukai Exp $ */
+/* $Id: rc.c,v 1.78 2003/01/17 17:07:02 ukai Exp $ */
/*
* Initialization file etc.
*/
@@ -1580,7 +1580,7 @@ rcFile(char *base)
(base[0] == '.'
&& (base[1] == '/' || (base[1] == '.' && base[2] == '/')))
|| (base[0] == '~' && base[1] == '/')))
- /* /file, ./file, ../file, ~/file */
+ /* /file, ./file, ../file, ~/file */
return expandPath(base);
return expandPath(Strnew_m_charp(rc_dir, "/", base, NULL)->ptr);
}