diff options
| author | Paul Eggert | 2012-08-13 20:15:52 -0700 |
|---|---|---|
| committer | Paul Eggert | 2012-08-13 20:15:52 -0700 |
| commit | 76d0e68f8d6bbae0886443c98322e81eab0dc5aa (patch) | |
| tree | ff409b56c98820ef49f74dc20a5a27fa7cb76052 | |
| parent | 5884c3244a764191661ee8d908229be0260336dc (diff) | |
| download | emacs-76d0e68f8d6bbae0886443c98322e81eab0dc5aa.tar.gz emacs-76d0e68f8d6bbae0886443c98322e81eab0dc5aa.zip | |
Merge from gnulib.
This incorporates:
2012-08-05 extern-inline: also ignore -Wmissing-declarations
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | doc/misc/texinfo.tex | 15 | ||||
| -rw-r--r-- | m4/extern-inline.m4 | 3 |
3 files changed, 17 insertions, 6 deletions
| @@ -1,3 +1,8 @@ | |||
| 1 | 2012-08-14 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | Merge from gnulib, incorporating: | ||
| 4 | 2012-08-05 extern-inline: also ignore -Wmissing-declarations | ||
| 5 | |||
| 1 | 2012-08-10 Juanma Barranquero <lekktu@gmail.com> | 6 | 2012-08-10 Juanma Barranquero <lekktu@gmail.com> |
| 2 | 7 | ||
| 3 | * lib/makefile.w32-in (STAT_TIME_H): New macro. | 8 | * lib/makefile.w32-in (STAT_TIME_H): New macro. |
diff --git a/doc/misc/texinfo.tex b/doc/misc/texinfo.tex index c7354edcaf9..dc4bf6400c4 100644 --- a/doc/misc/texinfo.tex +++ b/doc/misc/texinfo.tex | |||
| @@ -3146,12 +3146,17 @@ end | |||
| 3146 | % hopefully nobody will notice/care. | 3146 | % hopefully nobody will notice/care. |
| 3147 | \edef\ecsize{\csname\curfontsize ecsize\endcsname}% | 3147 | \edef\ecsize{\csname\curfontsize ecsize\endcsname}% |
| 3148 | \edef\nominalsize{\csname\curfontsize nominalsize\endcsname}% | 3148 | \edef\nominalsize{\csname\curfontsize nominalsize\endcsname}% |
| 3149 | \ifx\curfontstyle\bfstylename | 3149 | \ifmonospace |
| 3150 | % bold: | 3150 | % typewriter: |
| 3151 | \font\thisecfont = ecb\ifusingit{i}{x}\ecsize \space at \nominalsize | 3151 | \font\thisecfont = ectt\ecsize \space at \nominalsize |
| 3152 | \else | 3152 | \else |
| 3153 | % regular: | 3153 | \ifx\curfontstyle\bfstylename |
| 3154 | \font\thisecfont = ec\ifusingit{ti}{rm}\ecsize \space at \nominalsize | 3154 | % bold: |
| 3155 | \font\thisecfont = ecb\ifusingit{i}{x}\ecsize \space at \nominalsize | ||
| 3156 | \else | ||
| 3157 | % regular: | ||
| 3158 | \font\thisecfont = ec\ifusingit{ti}{rm}\ecsize \space at \nominalsize | ||
| 3159 | \fi | ||
| 3155 | \fi | 3160 | \fi |
| 3156 | \thisecfont | 3161 | \thisecfont |
| 3157 | } | 3162 | } |
diff --git a/m4/extern-inline.m4 b/m4/extern-inline.m4 index cacf8a08b16..187a33599a3 100644 --- a/m4/extern-inline.m4 +++ b/m4/extern-inline.m4 | |||
| @@ -24,7 +24,8 @@ AC_DEFUN([gl_EXTERN_INLINE], | |||
| 24 | # if (__GNUC__ == 4 && 6 <= __GNUC_MINOR__) || 4 < __GNUC__ | 24 | # if (__GNUC__ == 4 && 6 <= __GNUC_MINOR__) || 4 < __GNUC__ |
| 25 | # define _GL_INLINE_HEADER_BEGIN \ | 25 | # define _GL_INLINE_HEADER_BEGIN \ |
| 26 | _Pragma ("GCC diagnostic push") \ | 26 | _Pragma ("GCC diagnostic push") \ |
| 27 | _Pragma ("GCC diagnostic ignored \"-Wmissing-prototypes\"") | 27 | _Pragma ("GCC diagnostic ignored \"-Wmissing-prototypes\"") \ |
| 28 | _Pragma ("GCC diagnostic ignored \"-Wmissing-declarations\"") | ||
| 28 | # define _GL_INLINE_HEADER_END \ | 29 | # define _GL_INLINE_HEADER_END \ |
| 29 | _Pragma ("GCC diagnostic pop") | 30 | _Pragma ("GCC diagnostic pop") |
| 30 | # endif | 31 | # endif |