diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-01-26 17:24:01 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-01-26 17:24:01 +0000 |
commit | 843221c52324b0a25431c1bd2472d93fa714d0fa (patch) | |
tree | 36df5e8f54c46c50751195562ccc1e787e272786 /history.h | |
parent | [w3m-dev 02913] wrong table width calculation (diff) | |
download | w3m-843221c52324b0a25431c1bd2472d93fa714d0fa.tar.gz w3m-843221c52324b0a25431c1bd2472d93fa714d0fa.zip |
[w3m-dev 02914]
* history.c (copyHist): added
* history.h (copyHist): ditto
* main.c (goURL0): copyHist(URLHist), push current and anchor URLs
default set by DefaultURLString
From: Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
Diffstat (limited to 'history.h')
-rw-r--r-- | history.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id: history.h,v 1.4 2001/12/10 17:02:44 ukai Exp $ */ +/* $Id: history.h,v 1.5 2002/01/26 17:24:01 ukai Exp $ */ #ifndef HISTORY_H #define HISTORY_H @@ -18,6 +18,7 @@ typedef struct { } Hist; extern Hist *newHist(); +extern Hist *copyHist(Hist *hist); extern HistItem *unshiftHist(Hist *hist, char *ptr); extern HistItem *pushHist(Hist *hist, char *ptr); extern HistItem *pushHashHist(Hist *hist, char *ptr); |