aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFumitoshi UKAI <ukai@debian.or.jp>2001-11-20 17:49:23 +0000
committerFumitoshi UKAI <ukai@debian.or.jp>2001-11-20 17:49:23 +0000
commit8ca5c59be79502818b2f881ce1de15d9cc964435 (patch)
treea89afbb79c0f1caf5ccd6200f717c5082798cf9a
parent[w3m-dev 02454] line number (diff)
downloadw3m-8ca5c59be79502818b2f881ce1de15d9cc964435.tar.gz
w3m-8ca5c59be79502818b2f881ce1de15d9cc964435.zip
add rcsids
-rw-r--r--ChangeLog4
-rw-r--r--XMakefile1
-rw-r--r--backend.c1
-rw-r--r--buffer.c1
-rwxr-xr-xconfigure2
-rw-r--r--conv.c1
-rw-r--r--ctrlcode.h2
-rw-r--r--entity.c2
-rw-r--r--entity.h1
-rw-r--r--form.c3
-rw-r--r--form.h5
-rw-r--r--frame.h3
-rw-r--r--ftp.c1
-rw-r--r--func.c3
-rw-r--r--func.h3
-rw-r--r--funcname.tab1
-rw-r--r--gcmain.c1
-rw-r--r--hash.c1
-rw-r--r--hash.h1
-rw-r--r--history.c2
-rw-r--r--history.h2
-rw-r--r--html.c1
-rw-r--r--indep.h1
-rw-r--r--inflate.c2
-rwxr-xr-xinstall.sh1
-rw-r--r--keybind_lynx.c2
-rw-r--r--local.c1
-rw-r--r--local.h3
-rw-r--r--map.c3
-rw-r--r--menu.c2
-rw-r--r--menu.h3
-rw-r--r--mimehead.c2
-rw-r--r--mktable.c2
-rw-r--r--myctype.c2
-rw-r--r--myctype.h1
-rw-r--r--parsetag.c1
-rw-r--r--parsetag.h1
-rw-r--r--parsetagx.c1
-rw-r--r--parsetagx.h1
-rw-r--r--rc.c2
-rw-r--r--regex.c1
-rw-r--r--regex.h1
-rw-r--r--search.c1
-rw-r--r--terms.h1
-rw-r--r--textlist.h1
-rw-r--r--ucs_eucjp.h1
-rw-r--r--ucs_latin1.h1
-rw-r--r--url.c1
-rw-r--r--version.c1
-rw-r--r--w3mbookmark.c1
-rw-r--r--w3mhelperpanel.c1
51 files changed, 62 insertions, 22 deletions
diff --git a/ChangeLog b/ChangeLog
index fbe7528..5d59cc8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2001-11-21 Fumitoshi UKAI <ukai@debian.or.jp>
+
+ * add rcsids
+
2001-11-21 Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
* buffer.c (newBuffer): set COLS
diff --git a/XMakefile b/XMakefile
index 79c4ba6..7a095ac 100644
--- a/XMakefile
+++ b/XMakefile
@@ -1,3 +1,4 @@
+# $Id: XMakefile,v 1.7 2001/11/20 17:49:23 ukai Exp $
SRCS=main.c file.c buffer.c display.c etc.c search.c linein.c table.c local.c \
form.c map.c frame.c rc.c menu.c mailcap.c\
func.c cookie.c history.c backend.c $(KEYBIND_SRC)
diff --git a/backend.c b/backend.c
index d5847e7..3d9dc5f 100644
--- a/backend.c
+++ b/backend.c
@@ -1,3 +1,4 @@
+/* $Id: backend.c,v 1.3 2001/11/20 17:49:23 ukai Exp $ */
#include <stdio.h>
#include <string.h>
#include <sys/types.h>
diff --git a/buffer.c b/buffer.c
index 51637c0..dbe68c0 100644
--- a/buffer.c
+++ b/buffer.c
@@ -1,3 +1,4 @@
+/* $Id: buffer.c,v 1.4 2001/11/20 17:49:23 ukai Exp $ */
#include "fm.h"
#ifdef MOUSE
diff --git a/configure b/configure
index 18d296a..08fb9f8 100755
--- a/configure
+++ b/configure
@@ -1,5 +1,5 @@
#!/bin/sh
-#
+# $Id: configure,v 1.7 2001/11/20 17:49:23 ukai Exp $
# Configuration.
#
diff --git a/conv.c b/conv.c
index 7985326..379f5f9 100644
--- a/conv.c
+++ b/conv.c
@@ -1,3 +1,4 @@
+/* $Id: conv.c,v 1.3 2001/11/20 17:49:23 ukai Exp $ */
#include <stdio.h>
#include <string.h>
#include "fm.h"
diff --git a/ctrlcode.h b/ctrlcode.h
index 49498b2..27b47a4 100644
--- a/ctrlcode.h
+++ b/ctrlcode.h
@@ -1,4 +1,4 @@
-
+/* $Id: ctrlcode.h,v 1.2 2001/11/20 17:49:23 ukai Exp $ */
/* control characters */
#define CTRL_A 1
diff --git a/entity.c b/entity.c
index d352068..bae695a 100644
--- a/entity.c
+++ b/entity.c
@@ -1,4 +1,4 @@
-
+/* $Id: entity.c,v 1.2 2001/11/20 17:49:23 ukai Exp $ */
#include "fm.h"
#include <stdio.h>
#include "indep.h"
diff --git a/entity.h b/entity.h
index 365422f..95d7af3 100644
--- a/entity.h
+++ b/entity.h
@@ -1,3 +1,4 @@
+/* $Id: entity.h,v 1.2 2001/11/20 17:49:23 ukai Exp $ */
#include "hash.h"
static HashItem_si MyHashItem[] = {
/* 0 */ {"otimes",0x2297,&MyHashItem[1]},
diff --git a/form.c b/form.c
index cb2e41a..d3f6918 100644
--- a/form.c
+++ b/form.c
@@ -1,5 +1,4 @@
-
-/* $Id: form.c,v 1.4 2001/11/16 22:02:00 ukai Exp $ */
+/* $Id: form.c,v 1.5 2001/11/20 17:49:23 ukai Exp $ */
/*
* HTML forms
*/
diff --git a/form.h b/form.h
index 3ed82b8..8987771 100644
--- a/form.h
+++ b/form.h
@@ -1,5 +1,6 @@
-/*
- * HTML forms
+/* $Id: form.h,v 1.3 2001/11/20 17:49:23 ukai Exp $ */
+/*
+ * HTML forms
*/
#ifndef FORM_H
#define FORM_H
diff --git a/frame.h b/frame.h
index 69d9d68..b7e54dd 100644
--- a/frame.h
+++ b/frame.h
@@ -1,4 +1,5 @@
-/*
+/* $Id: frame.h,v 1.3 2001/11/20 17:49:23 ukai Exp $ */
+/*
* frame support
*/
diff --git a/ftp.c b/ftp.c
index d2b9b7d..aae1bb2 100644
--- a/ftp.c
+++ b/ftp.c
@@ -1,3 +1,4 @@
+/* $Id: ftp.c,v 1.4 2001/11/20 17:49:23 ukai Exp $ */
#include <stdio.h>
#include <pwd.h>
#include <Str.h>
diff --git a/func.c b/func.c
index 9fb360c..a961e6d 100644
--- a/func.c
+++ b/func.c
@@ -1,4 +1,5 @@
-/*
+/* $Id: func.c,v 1.3 2001/11/20 17:49:23 ukai Exp $ */
+/*
* w3m func.c
*/
diff --git a/func.h b/func.h
index 9fb0989..07b3d68 100644
--- a/func.h
+++ b/func.h
@@ -1,4 +1,5 @@
-/*
+/* $Id: func.h,v 1.2 2001/11/20 17:49:23 ukai Exp $ */
+/*
* w3m func.h
*/
diff --git a/funcname.tab b/funcname.tab
index 8f245c0..a49c2dd 100644
--- a/funcname.tab
+++ b/funcname.tab
@@ -1,3 +1,4 @@
+# $Id: funcname.tab,v 1.4 2001/11/20 17:49:23 ukai Exp $
# macro name function name
#----------------------------
@@@ nulcmd
diff --git a/gcmain.c b/gcmain.c
index 08b28f2..d6a04e4 100644
--- a/gcmain.c
+++ b/gcmain.c
@@ -1,3 +1,4 @@
+/* $Id: gcmain.c,v 1.2 2001/11/20 17:49:23 ukai Exp $ */
#ifndef GC_MAIN
#define GC_MAIN
diff --git a/hash.c b/hash.c
index 4e10bd5..cb340b5 100644
--- a/hash.c
+++ b/hash.c
@@ -1,3 +1,4 @@
+/* $Id: hash.c,v 1.2 2001/11/20 17:49:23 ukai Exp $ */
#include <string.h>
#include "hash.h"
#include "gc.h"
diff --git a/hash.h b/hash.h
index 226b720..7484328 100644
--- a/hash.h
+++ b/hash.h
@@ -1,3 +1,4 @@
+/* $Id: hash.h,v 1.2 2001/11/20 17:49:23 ukai Exp $ */
#ifndef HASH_H
#define HASH_H
diff --git a/history.c b/history.c
index 433b00b..4ff1b8a 100644
--- a/history.c
+++ b/history.c
@@ -1,4 +1,4 @@
-
+/* $Id: history.c,v 1.3 2001/11/20 17:49:23 ukai Exp $ */
#include "fm.h"
#ifdef USE_HISTORY
diff --git a/history.h b/history.h
index 034c708..b4e9453 100644
--- a/history.h
+++ b/history.h
@@ -1,4 +1,4 @@
-
+/* $Id: history.h,v 1.2 2001/11/20 17:49:23 ukai Exp $ */
#ifndef HISTORY_H
#define HISTORY_H
diff --git a/html.c b/html.c
index 599d29b..3597796 100644
--- a/html.c
+++ b/html.c
@@ -1,3 +1,4 @@
+/* $Id: html.c,v 1.4 2001/11/20 17:49:23 ukai Exp $ */
#include "html.h"
/* Define HTML Tag Infomation Table */
diff --git a/indep.h b/indep.h
index e077e28..2517350 100644
--- a/indep.h
+++ b/indep.h
@@ -1,3 +1,4 @@
+/* $Id: indep.h,v 1.4 2001/11/20 17:49:23 ukai Exp $ */
#ifndef INDEP_H
#define INDEP_H
#include "gc.h"
diff --git a/inflate.c b/inflate.c
index f949274..15636f0 100644
--- a/inflate.c
+++ b/inflate.c
@@ -1,4 +1,4 @@
-
+/* $Id: inflate.c,v 1.2 2001/11/20 17:49:23 ukai Exp $ */
#include <stdio.h>
#include <stdlib.h>
#include <zlib.h>
diff --git a/install.sh b/install.sh
index 562f91a..8b79012 100755
--- a/install.sh
+++ b/install.sh
@@ -1,4 +1,5 @@
#! /bin/sh
+# $Id: install.sh,v 1.2 2001/11/20 17:49:23 ukai Exp $
while :
do
diff --git a/keybind_lynx.c b/keybind_lynx.c
index e6deb71..4597a35 100644
--- a/keybind_lynx.c
+++ b/keybind_lynx.c
@@ -1,4 +1,4 @@
-
+/* $Id: keybind_lynx.c,v 1.3 2001/11/20 17:49:23 ukai Exp $ */
/*
* Lynx-like key binding.
*
diff --git a/local.c b/local.c
index f094721..b4484ac 100644
--- a/local.c
+++ b/local.c
@@ -1,3 +1,4 @@
+/* $Id: local.c,v 1.6 2001/11/20 17:49:23 ukai Exp $ */
#include "fm.h"
#include <string.h>
#include <stdio.h>
diff --git a/local.h b/local.h
index 7a9f565..79a6a28 100644
--- a/local.h
+++ b/local.h
@@ -1,4 +1,5 @@
-/*
+/* $Id: local.h,v 1.3 2001/11/20 17:49:23 ukai Exp $ */
+/*
* w3m local.h
*/
diff --git a/map.c b/map.c
index c4e06ae..70b0eed 100644
--- a/map.c
+++ b/map.c
@@ -1,4 +1,5 @@
-/*
+/* $Id: map.c,v 1.3 2001/11/20 17:49:23 ukai Exp $ */
+/*
* client-side image maps
*/
#include "fm.h"
diff --git a/menu.c b/menu.c
index f5ccaed..fb96ad1 100644
--- a/menu.c
+++ b/menu.c
@@ -1,4 +1,4 @@
-
+/* $Id: menu.c,v 1.4 2001/11/20 17:49:23 ukai Exp $ */
/*
* w3m menu.c
*/
diff --git a/menu.h b/menu.h
index 707d24f..b32ad58 100644
--- a/menu.h
+++ b/menu.h
@@ -1,4 +1,5 @@
-/*
+/* $Id: menu.h,v 1.2 2001/11/20 17:49:23 ukai Exp $ */
+/*
* w3m menu.h
*/
diff --git a/mimehead.c b/mimehead.c
index 1d1b507..a197a06 100644
--- a/mimehead.c
+++ b/mimehead.c
@@ -1,4 +1,4 @@
-
+/* $Id: mimehead.c,v 1.3 2001/11/20 17:49:23 ukai Exp $ */
/*
* MIME header support by Akinori ITO
*/
diff --git a/mktable.c b/mktable.c
index 0c87f28..ab9f6ef 100644
--- a/mktable.c
+++ b/mktable.c
@@ -1,4 +1,4 @@
-
+/* $Id: mktable.c,v 1.2 2001/11/20 17:49:23 ukai Exp $ */
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
diff --git a/myctype.c b/myctype.c
index 3611b3d..7173e6f 100644
--- a/myctype.c
+++ b/myctype.c
@@ -1,4 +1,4 @@
-
+/* $Id: myctype.c,v 1.3 2001/11/20 17:49:23 ukai Exp $ */
unsigned char MYCTYPE_MAP[ 0x100 ] = {
/* NUL SOH STX ETX EOT ENQ ACK BEL BS HT LF VT FF CR SO SI */
1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 3, 3, 3, 3, 1, 1,
diff --git a/myctype.h b/myctype.h
index 77e6396..7a82284 100644
--- a/myctype.h
+++ b/myctype.h
@@ -1,3 +1,4 @@
+/* $Id: myctype.h,v 1.3 2001/11/20 17:49:23 ukai Exp $ */
#ifndef _MYCTYPE_H
#define _MYCTYPE_H
diff --git a/parsetag.c b/parsetag.c
index b5078d1..7713c14 100644
--- a/parsetag.c
+++ b/parsetag.c
@@ -1,3 +1,4 @@
+/* $Id: parsetag.c,v 1.4 2001/11/20 17:49:23 ukai Exp $ */
#include "myctype.h"
#include "indep.h"
#include "Str.h"
diff --git a/parsetag.h b/parsetag.h
index 470645d..9b35362 100644
--- a/parsetag.h
+++ b/parsetag.h
@@ -1,3 +1,4 @@
+/* $Id: parsetag.h,v 1.2 2001/11/20 17:49:23 ukai Exp $ */
#ifndef PARSETAG_H
#define PARSETAG_H
struct parsed_tagarg {
diff --git a/parsetagx.c b/parsetagx.c
index 432d08d..a299ff5 100644
--- a/parsetagx.c
+++ b/parsetagx.c
@@ -1,3 +1,4 @@
+/* $Id: parsetagx.c,v 1.4 2001/11/20 17:49:23 ukai Exp $ */
#include "fm.h"
#include "myctype.h"
#include "indep.h"
diff --git a/parsetagx.h b/parsetagx.h
index dc03cd1..4383c6b 100644
--- a/parsetagx.h
+++ b/parsetagx.h
@@ -1,3 +1,4 @@
+/* $Id: parsetagx.h,v 1.3 2001/11/20 17:49:23 ukai Exp $ */
#ifndef PARSETAGX_H
#define PARSETAGX_H
diff --git a/rc.c b/rc.c
index 6234210..63261bb 100644
--- a/rc.c
+++ b/rc.c
@@ -1,4 +1,4 @@
-
+/* $Id: rc.c,v 1.5 2001/11/20 17:49:23 ukai Exp $ */
/*
* Initialization file etc.
*/
diff --git a/regex.c b/regex.c
index 27ccdf1..16a1f16 100644
--- a/regex.c
+++ b/regex.c
@@ -1,3 +1,4 @@
+/* $Id: regex.c,v 1.4 2001/11/20 17:49:23 ukai Exp $ */
/*
* regex: Regular expression pattern match library
*
diff --git a/regex.h b/regex.h
index 702a269..c50a5fa 100644
--- a/regex.h
+++ b/regex.h
@@ -1,3 +1,4 @@
+/* $Id: regex.h,v 1.2 2001/11/20 17:49:23 ukai Exp $ */
#define REGEX_MAX 64
#define STORAGE_MAX 256
diff --git a/search.c b/search.c
index 5b5ddaf..d4a831c 100644
--- a/search.c
+++ b/search.c
@@ -1,3 +1,4 @@
+/* $Id: search.c,v 1.3 2001/11/20 17:49:23 ukai Exp $ */
#include "fm.h"
#include "regex.h"
diff --git a/terms.h b/terms.h
index a663047..60d309b 100644
--- a/terms.h
+++ b/terms.h
@@ -1,3 +1,4 @@
+/* $Id: terms.h,v 1.3 2001/11/20 17:49:23 ukai Exp $ */
#ifndef TERMS_H
#define TERMS_H
diff --git a/textlist.h b/textlist.h
index 3548ff1..00f5754 100644
--- a/textlist.h
+++ b/textlist.h
@@ -1,3 +1,4 @@
+/* $Id: textlist.h,v 1.2 2001/11/20 17:49:23 ukai Exp $ */
#ifndef TEXTLIST_H
#define TEXTLIST_H
#include "Str.h"
diff --git a/ucs_eucjp.h b/ucs_eucjp.h
index 1fb2c82..6dd4bcd 100644
--- a/ucs_eucjp.h
+++ b/ucs_eucjp.h
@@ -1,3 +1,4 @@
+/* $Id: ucs_eucjp.h,v 1.2 2001/11/20 17:49:23 ukai Exp $ */
static entity_map ucs_eucjp_map[] =
{
{ 0x0152, "OE" },
diff --git a/ucs_latin1.h b/ucs_latin1.h
index 286a303..e92b685 100644
--- a/ucs_latin1.h
+++ b/ucs_latin1.h
@@ -1,3 +1,4 @@
+/* $Id: ucs_latin1.h,v 1.2 2001/11/20 17:49:23 ukai Exp $ */
static entity_map ucs_latin1_map[] =
{
{ 0x0152, "OE" },
diff --git a/url.c b/url.c
index ff160c5..912235b 100644
--- a/url.c
+++ b/url.c
@@ -1,3 +1,4 @@
+/* $Id: url.c,v 1.6 2001/11/20 17:49:23 ukai Exp $ */
#include "fm.h"
#include <sys/types.h>
#include <sys/socket.h>
diff --git a/version.c b/version.c
index 0153ada..16f289e 100644
--- a/version.c
+++ b/version.c
@@ -1,3 +1,4 @@
+/* $Id: version.c,v 1.5 2001/11/20 17:49:23 ukai Exp $ */
#define CURRENT_VERSION "w3m/0.2.2"
#ifndef FM_H
diff --git a/w3mbookmark.c b/w3mbookmark.c
index 74b32e5..d8ab0e3 100644
--- a/w3mbookmark.c
+++ b/w3mbookmark.c
@@ -1,3 +1,4 @@
+/* $Id: w3mbookmark.c,v 1.3 2001/11/20 17:49:23 ukai Exp $ */
#ifdef __EMX__
#include <stdlib.h>
#endif
diff --git a/w3mhelperpanel.c b/w3mhelperpanel.c
index 4a8f5a6..7554dc5 100644
--- a/w3mhelperpanel.c
+++ b/w3mhelperpanel.c
@@ -1,3 +1,4 @@
+/* $Id: w3mhelperpanel.c,v 1.4 2001/11/20 17:49:23 ukai Exp $ */
#include <errno.h>
#include <stdlib.h>
#include <stdio.h>