Deleted Added
full compact
rcsmap.c (9) rcsmap.c (11891)
1/* RCS map of character types */
2
3/* Copyright (C) 1982, 1988, 1989 Walter Tichy
1/* RCS map of character types */
2
3/* Copyright (C) 1982, 1988, 1989 Walter Tichy
4 Copyright 1990, 1991 by Paul Eggert
4 Copyright 1990, 1991, 1995 by Paul Eggert
5 Distributed under license by the Free Software Foundation, Inc.
6
7This file is part of RCS.
8
9RCS is free software; you can redistribute it and/or modify
10it under the terms of the GNU General Public License as published by
11the Free Software Foundation; either version 2, or (at your option)
12any later version.
13
14RCS is distributed in the hope that it will be useful,
15but WITHOUT ANY WARRANTY; without even the implied warranty of
16MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17GNU General Public License for more details.
18
19You should have received a copy of the GNU General Public License
5 Distributed under license by the Free Software Foundation, Inc.
6
7This file is part of RCS.
8
9RCS is free software; you can redistribute it and/or modify
10it under the terms of the GNU General Public License as published by
11the Free Software Foundation; either version 2, or (at your option)
12any later version.
13
14RCS is distributed in the hope that it will be useful,
15but WITHOUT ANY WARRANTY; without even the implied warranty of
16MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17GNU General Public License for more details.
18
19You should have received a copy of the GNU General Public License
20along with RCS; see the file COPYING. If not, write to
21the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
20along with RCS; see the file COPYING.
21If not, write to the Free Software Foundation,
2259 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22
23Report problems and direct all questions to:
24
25 rcs-bugs@cs.purdue.edu
26
27*/
28
29#include "rcsbase.h"
30
23
24Report problems and direct all questions to:
25
26 rcs-bugs@cs.purdue.edu
27
28*/
29
30#include "rcsbase.h"
31
31libId(mapId, "$Id: rcsmap.c,v 5.2 1991/08/19 03:13:55 eggert Exp $")
32libId(mapId, "$Id: rcsmap.c,v 5.3 1995/06/16 06:19:24 eggert Exp $")
32
33/* map of character types */
34/* ISO 8859/1 (Latin-1) */
35enum tokens const ctab[] = {
36 UNKN, UNKN, UNKN, UNKN, UNKN, UNKN, UNKN, UNKN,
37 SPACE, SPACE, NEWLN, SPACE, SPACE, SPACE, UNKN, UNKN,
38 UNKN, UNKN, UNKN, UNKN, UNKN, UNKN, UNKN, UNKN,
39 UNKN, UNKN, UNKN, UNKN, UNKN, UNKN, UNKN, UNKN,

--- 29 unchanged lines hidden ---
33
34/* map of character types */
35/* ISO 8859/1 (Latin-1) */
36enum tokens const ctab[] = {
37 UNKN, UNKN, UNKN, UNKN, UNKN, UNKN, UNKN, UNKN,
38 SPACE, SPACE, NEWLN, SPACE, SPACE, SPACE, UNKN, UNKN,
39 UNKN, UNKN, UNKN, UNKN, UNKN, UNKN, UNKN, UNKN,
40 UNKN, UNKN, UNKN, UNKN, UNKN, UNKN, UNKN, UNKN,

--- 29 unchanged lines hidden ---