diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2003-04-06 16:27:53 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2003-04-06 16:27:53 +0000 |
commit | a603190b2e1702537f859a648eb5e2b6910ff2e4 (patch) | |
tree | 6ae3da1ae67bc54359266d1939ca98395e32ec54 /file.c | |
parent | [w3m-dev 03838] W3M_LIBS splitted from LIBS (diff) | |
download | w3m-a603190b2e1702537f859a648eb5e2b6910ff2e4.tar.gz w3m-a603190b2e1702537f859a648eb5e2b6910ff2e4.zip |
[w3m-dev 03843] cleanup macros
* config.h.dist config.h.in etc.c file.c fm.h ftp.c linein.c
main.c rc.c:
delete EMACS_LIKE_LINEEDIT, VI_PREC_NUM, LABEL_TOPLINE,
NEXTPAGE_TOPLINE, FTPPASS_HOSTNAMEGEN
use_mark default FALSE
emacs_like_lineedit default FALSE
vi_prec_num default FALSE
add UseHistory, use_history
* NEWS: rc: use_history
From: Fumitoshi UKAI <ukai@debian.or.jp>
Diffstat (limited to '')
-rw-r--r-- | file.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -1,4 +1,4 @@ -/* $Id: file.c,v 1.219 2003/03/02 15:09:24 ukai Exp $ */ +/* $Id: file.c,v 1.220 2003/04/06 16:27:54 ukai Exp $ */ #include "fm.h" #include <sys/types.h> #include "myctype.h" @@ -2079,12 +2079,10 @@ loadGeneralFile(char *path, ParsedURL *volatile current, char *referer, #endif /* not JP_CHARSET */ if (a != NULL) { gotoLine(b, a->start.line); -#ifdef LABEL_TOPLINE if (label_topline) b->topLine = lineSkip(b, b->topLine, b->currentLine->linenumber - b->topLine->linenumber, FALSE); -#endif b->pos = a->start.pos; arrangeCursor(b); } |