diff options
author | Bruno Haible <bruno@clisp.org> | 2006-11-30 13:25:11 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2009-06-23 12:14:25 +0200 |
commit | cbea8c5f3c584806e6ba97d8ef86e641222b79f4 (patch) | |
tree | 4458b5e8e52c738e24dab14c8b4d0fe816550868 | |
parent | ca5f94d657d74b014931554fe455fc795e7bd555 (diff) | |
download | external_gettext-cbea8c5f3c584806e6ba97d8ef86e641222b79f4.zip external_gettext-cbea8c5f3c584806e6ba97d8ef86e641222b79f4.tar.gz external_gettext-cbea8c5f3c584806e6ba97d8ef86e641222b79f4.tar.bz2 |
Fix double-inclusion guard.
-rw-r--r-- | gnulib-local/ChangeLog | 4 | ||||
-rw-r--r-- | gnulib-local/lib/libcroco/cr-fonts.h | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gnulib-local/ChangeLog b/gnulib-local/ChangeLog index 9f4a1ad..a16d4cf 100644 --- a/gnulib-local/ChangeLog +++ b/gnulib-local/ChangeLog @@ -1,3 +1,7 @@ +2006-11-28 Bruno Haible <bruno@clisp.org> + + * lib/libcroco/cr-fonts.h: Fix double-inclusion guard. + 2006-11-27 Paul Eggert <eggert@cs.ucla.edu> Bruno Haible <bruno@clisp.org> diff --git a/gnulib-local/lib/libcroco/cr-fonts.h b/gnulib-local/lib/libcroco/cr-fonts.h index 4544618..9ec1a9e 100644 --- a/gnulib-local/lib/libcroco/cr-fonts.h +++ b/gnulib-local/lib/libcroco/cr-fonts.h @@ -25,7 +25,6 @@ #ifndef __CR_FONTS_H__ #define __CR_FONTS_H__ -#endif #include "cr-utils.h" #include "cr-num.h" @@ -312,3 +311,5 @@ const gchar * cr_font_variant_to_string (enum CRFontVariant a_code) ; const gchar * cr_font_stretch_to_string (enum CRFontStretch a_code) ; G_END_DECLS + +#endif /* __CR_FONTS_H__ */ |