4 require 'regen_lib.pl';
5 safer_unlink ("keywords.h");
6 open(KW, ">keywords.h") || die "Can't create keywords.h: $!\n";
11 /* -*- buffer-read-only: t -*-
15 * Copyright (C) 1994, 1995, 1996, 1997, 1999, 2000, 2001, 2002, 2005,
16 * 2006, 2007, by Larry Wall and others
18 * You may distribute under the terms of either the GNU General Public
19 * License or the Artistic License, as specified in the README file.
21 * !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
22 * This file is built by keywords.pl from its data. Any changes made here
34 my ($keyword) = split;
35 print &tab(5, "#define KEY_$keyword"), $keynum++, "\n";
38 print KW "\n/* ex: set ro: */\n";
40 close KW or die "Error closing keywords.h: $!";
42 ###########################################################################
45 $t .= "\t" x ($l - (length($t) + 1) / 8);
48 ###########################################################################