diff options
Diffstat (limited to 'contrib/texinfo/info/footnotes.h')
| -rw-r--r-- | contrib/texinfo/info/footnotes.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/contrib/texinfo/info/footnotes.h b/contrib/texinfo/info/footnotes.h index 3406bcb67be1..89b1b3578e6d 100644 --- a/contrib/texinfo/info/footnotes.h +++ b/contrib/texinfo/info/footnotes.h @@ -1,10 +1,9 @@ -/* footnotes.h -- Some functions for manipulating footnotes. - $Id: footnotes.h,v 1.3 1997/07/15 18:40:27 karl Exp $ +/* footnotes.h -- Some functions for manipulating footnotes. */ - This file is part of GNU Info, a program for reading online documentation +/* This file is part of GNU Info, a program for reading online documentation stored in Info format. - Copyright (C) 1993, 97 Free Software Foundation, Inc. + Copyright (C) 1993 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -22,11 +21,11 @@ Written by Brian Fox (bfox@ai.mit.edu). */ -#ifndef INFO_FOOTNOTES_H -#define INFO_FOOTNOTES_H +#if !defined (_FOOTNOTES_H_) +#define _FOOTNOTES_H_ /* Magic string which indicates following text is footnotes. */ -#define FOOTNOTE_LABEL _("---------- Footnotes ----------") +#define FOOTNOTE_LABEL "---------- Footnotes ----------" #define FN_FOUND 0 #define FN_UNFOUND 1 @@ -43,4 +42,5 @@ extern int info_get_or_remove_footnotes (); /* Non-zero means attempt to show footnotes when displaying a new window. */ extern int auto_footnotes_p; -#endif /* not INFO_FOOTNOTES_H */ +#endif /* !_FOOTNOTES_H_ */ + |
