[w3m-dev 03562] #undef BUFINFO

* config.h.dist (BUFINFO): undef
* configure (use_bufinfo): n
* main.c (saveBufferInfo): ifdef USE_BUFINFO
* proto.h (reloadBuffer): if 0
	(saveBufferInfo): ifdef USE_BUFINFO
From: Hironori SAKAMOTO <hsaka@mth.biglobe.ne.jp>
This commit is contained in:
Fumitoshi UKAI
2002-12-12 23:55:30 +00:00
parent fb86e0b3ca
commit e9fa33af3b
5 changed files with 21 additions and 8 deletions
+10 -1
View File
@@ -1,3 +1,12 @@
2002-12-13 Hironori SAKAMOTO <hsaka@mth.biglobe.ne.jp>
* [w3m-dev 03562] #undef BUFINFO
* config.h.dist (BUFINFO): undef
* configure (use_bufinfo): n
* main.c (saveBufferInfo): ifdef USE_BUFINFO
* proto.h (reloadBuffer): if 0
(saveBufferInfo): ifdef USE_BUFINFO
2002-12-12 Hironori SAKAMOTO <hsaka@mth.biglobe.ne.jp>
* [w3m-dev 03559] Re: use select instead of signal for loading images
@@ -5737,4 +5746,4 @@ a * [w3m-dev 03276] compile error on EWS4800
* release-0-2-1
* import w3m-0.2.1
$Id: ChangeLog,v 1.613 2002/12/11 15:07:53 ukai Exp $
$Id: ChangeLog,v 1.614 2002/12/12 23:55:30 ukai Exp $
+1 -1
View File
@@ -37,7 +37,7 @@
/*
* Save Current-buffer Information
*/
#define BUFINFO
#undef BUFINFO
/*
* Support EGD (Entropy Gathering Daemon)
Vendored
+2 -2
View File
@@ -1,5 +1,5 @@
#!/bin/sh
# $Id: configure,v 1.89 2002/11/24 16:02:22 ukai Exp $
# $Id: configure,v 1.90 2002/12/12 23:55:30 ukai Exp $
# Configuration.
#
@@ -875,7 +875,7 @@ def_param use_history y
def_param use_bg_color y
def_param format_nice n
def_param id_ext y
def_param use_bufinfo y
def_param use_bufinfo n
def_param use_egd y
def_param enable_remove_trailingspaces n
def_param menu_thin_frame n
+3 -1
View File
@@ -1,4 +1,4 @@
/* $Id: main.c,v 1.167 2002/12/11 15:07:53 ukai Exp $ */
/* $Id: main.c,v 1.168 2002/12/12 23:55:30 ukai Exp $ */
#define MAINPROGRAM
#include "fm.h"
#include <signal.h>
@@ -1265,6 +1265,7 @@ tmpClearBuffer(Buffer *buf)
static Str currentURL(void);
#ifdef USE_BUFINFO
void
saveBufferInfo()
{
@@ -1278,6 +1279,7 @@ saveBufferInfo()
fprintf(fp, "%s\n", currentURL()->ptr);
fclose(fp);
}
#endif
static void
pushBuffer(Buffer *buf)
+5 -3
View File
@@ -1,4 +1,4 @@
/* $Id: proto.h,v 1.69 2002/12/11 15:07:53 ukai Exp $ */
/* $Id: proto.h,v 1.70 2002/12/12 23:55:30 ukai Exp $ */
/*
* This file was automatically generated by version 1.7 of cextract.
* Manual editing not recommended.
@@ -714,13 +714,15 @@ extern void dictwordat(void);
#define dictword nulcmd
#define dictwordat nulcmd
#endif /* not USE_DICT */
#if 0
extern void reloadBuffer(Buffer *buf);
#endif
extern char *guess_save_name(Buffer *buf, char *file);
extern void wrapToggle(void);
#ifdef USE_BUFINFO
extern void saveBufferInfo(void);
#endif
extern void dispVer(void);