Skip to content

Commit

Permalink
CVS->SVN:
Browse files Browse the repository at this point in the history
- .cvsignore -> svn:ignore
- $Fenner$ -> $Id$ since svn doesn"t support custom tag names
- add svn:keywords Id
  • Loading branch information
fenner committed Nov 16, 2007
1 parent 54257ca commit 6958b31
Show file tree
Hide file tree
Showing 10 changed files with 9 additions and 19 deletions.
10 changes: 0 additions & 10 deletions .cvsignore

This file was deleted.

2 changes: 1 addition & 1 deletion Makefile.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# $Fenner: abnf-parser/Makefile.in,v 1.4 2004/09/17 01:33:48 fenner Exp $
# $Id:$
#

OBJS= parser.o scanner.o main.o @LIBOBJS@
Expand Down
2 changes: 1 addition & 1 deletion abnf.cgi
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# Sooooo many things to want to fix up.
# Bill Fenner <[email protected]> 23 June 2004
#
# $Fenner: abnf-parser/abnf.cgi,v 1.5 2005/02/03 05:38:46 fenner Exp $
# $Id:$
#
use CGI qw/:standard/;

Expand Down
2 changes: 1 addition & 1 deletion aex
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Heuristics to extract ABNF from an I-D or RFC.
# Bill Fenner <[email protected]> 26 September 2004
#
# $Fenner: abnf-parser/aex,v 1.4 2005/02/03 05:35:14 fenner Exp $
# $Id:$
#
use strict;
my($inabnf, $indent, $curindent, $spaces, $newrule);
Expand Down
2 changes: 1 addition & 1 deletion common.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Bill's ABNF Parser
* $Fenner: abnf-parser/common.h,v 1.8 2004/10/11 17:14:11 fenner Exp $
* $Id:$
*/

struct range {
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
dnl $Fenner: abnf-parser/configure.ac,v 1.10 2006/12/14 05:05:20 fenner Exp $
dnl $Id:$
dnl
dnl Boy does modern autoconf make it hard to have a small ./configure.
dnl Sorry that it's so huge for almost no configuration.
Expand Down
2 changes: 1 addition & 1 deletion main.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
#include "common.h"

static const char rcsid[] =
"$Fenner: abnf-parser/main.c,v 1.25 2006/12/14 05:02:24 fenner Exp $";
"$Id:$";
static const char versionstring[] = PACKAGE_VERSION;

static void printobj_r(object *, int, int);
Expand Down
2 changes: 1 addition & 1 deletion parser.y
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
#include "common.h"

static const char rcsid[] =
"$Fenner: abnf-parser/parser.y,v 1.22 2006/12/14 05:02:15 fenner Exp $";
"$Id:$";

extern int yylineno, yycolumn;

Expand Down
2 changes: 1 addition & 1 deletion prep
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# and [[(] only get space after if they have [*0-9] before them.
# strip comments (after ";")
#
# $Fenner$
# $Id$
#
while(<>) {
chomp;
Expand Down
2 changes: 1 addition & 1 deletion scanner.l
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
#include "y.tab.h"

static const char rcsid[] =
"$Fenner: abnf-parser/scanner.l,v 1.17 2006/06/16 01:21:03 fenner Exp $";
"$Id:$";

int yylineno = 1;
int yycolumn = 0;
Expand Down

0 comments on commit 6958b31

Please sign in to comment.