diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2003-07-26 17:16:24 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2003-07-26 17:16:24 +0000 |
commit | c913794f0cdf4baf33c195eb7700b7d75d24537f (patch) | |
tree | 5821a81f4872e6272db6cf4ac0d872744588fd8e /indep.h | |
parent | fix indent (diff) | |
download | w3m-c913794f0cdf4baf33c195eb7700b7d75d24537f.tar.gz w3m-c913794f0cdf4baf33c195eb7700b7d75d24537f.zip |
[w3m-dev 03945] Re: application/xhtml+xml support
* Makefile.in (ETC_DIR): added
(CONF_DIR): added
(DEFS): add CONF_DIR
(MAKE_ARGS): add CONF_DIR
* config.h.in (SYS_MAILCAP): use CONF_DIR
(SYS_URIMETHODMAP): use CONF_DIR
* func.c (sys_current_keymap_file): added
(interpret_keymap): added
(initKeymap): use interpret_keymap
(interpret_mouse_action): added
(initMouseAction): use interpret_mouse_action
* indep.c (w3m_conf_dir): added
* indep.h (w3m_conf_dir): added
* menu.c (interpret_menu): added
(initMenu): use interpret_menu
* proto.h (confFile): added
* rc.c (init_rc): read config file by interpret_rc
(confFile): added
From: Hironori SAKAMOTO <hsaka@mth.biglobe.ne.jp>
Diffstat (limited to 'indep.h')
-rw-r--r-- | indep.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id: indep.h,v 1.14 2003/04/07 16:27:10 ukai Exp $ */ +/* $Id: indep.h,v 1.15 2003/07/26 17:16:24 ukai Exp $ */ #ifndef INDEP_H #define INDEP_H #include <gc.h> @@ -68,6 +68,7 @@ extern char *shell_quote(char *str); extern char *w3m_auxbin_dir(); extern char *w3m_lib_dir(); extern char *w3m_etc_dir(); +extern char *w3m_conf_dir(); extern char *w3m_help_dir(); #define New(type) ((type*)GC_MALLOC(sizeof(type))) |