Deleted Added
sdiff udiff text old ( 11894 ) new ( 11927 )
full compact
1/* RCS common definitions and data structures */
2
3#define RCSBASE "$Id: rcsbase.h,v 5.20 1995/06/16 06:19:24 eggert Exp $"
4
5/* Copyright 1982, 1988, 1989 Walter Tichy
6 Copyright 1990, 1991, 1992, 1993, 1994, 1995 Paul Eggert
7 Distributed under license by the Free Software Foundation, Inc.
8
9This file is part of RCS.
10
11RCS is free software; you can redistribute it and/or modify

--- 14 unchanged lines hidden (view full) ---

26Report problems and direct all questions to:
27
28 rcs-bugs@cs.purdue.edu
29
30*/
31
32/*
33 * $Log: rcsbase.h,v $
34 * Revision 5.20 1995/06/16 06:19:24 eggert
35 * Update FSF address.
36 *
37 * Revision 5.19 1995/06/01 16:23:43 eggert
38 * (SIZEABLE_PATH): Don't depend on PATH_MAX: it's not worth configuring.
39 * (Ioffset_type,BINARY_EXPAND,MIN_UNEXPAND,MIN_UNCHANGED_EXPAND): New macros.
40 * (maps_memory): New macro; replaces many instances of `has_mmap'.
41 * (cacheptr): Renamed from cachetell.

--- 380 unchanged lines hidden (view full) ---

422#define IDH "Id"
423#define LOCKER "Locker"
424#define LOG "Log"
425#define NAME "Name"
426#define RCSFILE "RCSfile"
427#define REVISION "Revision"
428#define SOURCE "Source"
429#define STATE "State"
430#define keylength 8 /* max length of any of the above keywords */
431
432enum markers { Nomatch, Author, Date, Header, Id,
433 Locker, Log, Name, RCSfile, Revision, Source, State };
434 /* This must be in the same order as rcskeys.c's Keyword[] array. */
435
436#define DELNUMFORM "\n\n%s\n%s\n"
437/* used by putdtext and scanlogtext */
438
439#define EMPTYLOG "*** empty log message ***" /* used by ci and rlog */
440
441/* main program */

--- 316 unchanged lines hidden ---