fix for tab browsing. [w3m-dev 04266]

This commit is contained in:
Dai Sato
2007-05-30 04:47:24 +00:00
parent 4f490b306e
commit 8917c3d381
3 changed files with 27 additions and 6 deletions

9
fm.h
View File

@@ -1,4 +1,4 @@
/* $Id: fm.h,v 1.137 2007/05/23 13:07:44 inu Exp $ */
/* $Id: fm.h,v 1.138 2007/05/30 04:47:24 inu Exp $ */
/*
* w3m: WWW wo Miru utility
*
@@ -523,6 +523,13 @@ typedef struct _DownloadList {
} DownloadList;
#define DOWNLOAD_LIST_TITLE "Download List Panel"
#define COPY_BUFROOT(dstbuf, srcbuf) {\
(dstbuf)->rootX = (srcbuf)->rootX; \
(dstbuf)->rootY = (srcbuf)->rootY; \
(dstbuf)->COLS = (srcbuf)->COLS; \
(dstbuf)->LINES = (srcbuf)->LINES; \
}
#define COPY_BUFPOSITION(dstbuf, srcbuf) {\
(dstbuf)->topLine = (srcbuf)->topLine; \
(dstbuf)->currentLine = (srcbuf)->currentLine; \