summaryrefslogtreecommitdiffstats
path: root/gettext-runtime/m4
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2012-01-26 19:38:46 +0100
committerBruno Haible <bruno@clisp.org>2012-01-26 19:38:46 +0100
commit064a550ca1fd74ac4135beb713e14057cb10fcf4 (patch)
tree72f741c7ad18c7bf7994f08906c17667e0e0c416 /gettext-runtime/m4
parent23fc715d33566ac4a49dca8ebacaa2b8d4b8491e (diff)
downloadexternal_gettext-064a550ca1fd74ac4135beb713e14057cb10fcf4.zip
external_gettext-064a550ca1fd74ac4135beb713e14057cb10fcf4.tar.gz
external_gettext-064a550ca1fd74ac4135beb713e14057cb10fcf4.tar.bz2
Update from gnulib.
Diffstat (limited to 'gettext-runtime/m4')
-rw-r--r--gettext-runtime/m4/ChangeLog8
-rw-r--r--gettext-runtime/m4/intl.m44
-rw-r--r--gettext-runtime/m4/longlong.m46
3 files changed, 13 insertions, 5 deletions
diff --git a/gettext-runtime/m4/ChangeLog b/gettext-runtime/m4/ChangeLog
index 83dd855..9cb7cb0 100644
--- a/gettext-runtime/m4/ChangeLog
+++ b/gettext-runtime/m4/ChangeLog
@@ -1,3 +1,11 @@
+2012-01-06 Paul Eggert <eggert@cs.ucla.edu>
+
+ Use ', not `, for quoting output.
+ * m4/intl.m4 (gt_CHECK_DECL): Quote 'like this', not `like this', as
+ per the recent change to the GNU coding standards.
+ * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT,
+ AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
+
2011-09-10 Bruno Haible <bruno@clisp.org>
iconv.m4: Add support for MSVC compiler.
diff --git a/gettext-runtime/m4/intl.m4 b/gettext-runtime/m4/intl.m4
index 96db7db..9b31299 100644
--- a/gettext-runtime/m4/intl.m4
+++ b/gettext-runtime/m4/intl.m4
@@ -1,4 +1,4 @@
-# intl.m4 serial 20 (gettext-0.18.2)
+# intl.m4 serial 21 (gettext-0.18.2)
dnl Copyright (C) 1995-2010 Free Software Foundation, Inc.
dnl This file is free software; the Free Software Foundation
dnl gives unlimited permission to copy and/or distribute it,
@@ -296,5 +296,5 @@ AC_DEFUN([gt_CHECK_DECL],
gt_value=0
fi
AC_DEFINE_UNQUOTED([HAVE_DECL_]m4_translit($1, [a-z], [A-Z]), [$gt_value],
- [Define to 1 if you have the declaration of `$1', and to 0 if you don't.])
+ [Define to 1 if you have the declaration of '$1', and to 0 if you don't.])
])
diff --git a/gettext-runtime/m4/longlong.m4 b/gettext-runtime/m4/longlong.m4
index aed816c..459d378 100644
--- a/gettext-runtime/m4/longlong.m4
+++ b/gettext-runtime/m4/longlong.m4
@@ -1,4 +1,4 @@
-# longlong.m4 serial 16
+# longlong.m4 serial 17
dnl Copyright (C) 1999-2007, 2009-2011 Free Software Foundation, Inc.
dnl This file is free software; the Free Software Foundation
dnl gives unlimited permission to copy and/or distribute it,
@@ -51,7 +51,7 @@ AC_DEFUN([AC_TYPE_LONG_LONG_INT],
fi])
if test $ac_cv_type_long_long_int = yes; then
AC_DEFINE([HAVE_LONG_LONG_INT], [1],
- [Define to 1 if the system has the type `long long int'.])
+ [Define to 1 if the system has the type 'long long int'.])
fi
])
@@ -77,7 +77,7 @@ AC_DEFUN([AC_TYPE_UNSIGNED_LONG_LONG_INT],
fi])
if test $ac_cv_type_unsigned_long_long_int = yes; then
AC_DEFINE([HAVE_UNSIGNED_LONG_LONG_INT], [1],
- [Define to 1 if the system has the type `unsigned long long int'.])
+ [Define to 1 if the system has the type 'unsigned long long int'.])
fi
])