summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2009-11-24 23:34:37 +0100
committerLudovic Courtès <ludo@gnu.org>2009-11-24 23:38:26 +0100
commitfeef98f203a7e504557cb5753f06abea96a63ff7 (patch)
treeddbd2357ad4e9b9ddb6ddc99ea76aaafd2145c21 /examples
parent48300bace86a4a35a0a6a6e582f651193dbc5f82 (diff)
downloadguile-feef98f203a7e504557cb5753f06abea96a63ff7.tar.gz
Properly quote the first argument to `AC_DEFINE{,_UNQUOTED}'.
* acinclude.m4, configure.ac, examples/compat/acinclude.m4: Properly quote the first argument for `AC_DEFINE' and `AC_DEFINE_UNQUOTED'. * .x-sc_m4_quote_check: New file.
Diffstat (limited to 'examples')
-rw-r--r--examples/compat/acinclude.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/compat/acinclude.m4 b/examples/compat/acinclude.m4
index 9560e0b93..93c19252f 100644
--- a/examples/compat/acinclude.m4
+++ b/examples/compat/acinclude.m4
@@ -12,7 +12,7 @@ AC_DEFUN([GUILE_COMPAT],
ac_cv_have_scm_t_bits=no)])
AC_MSG_RESULT($ac_cv_have_scm_t_bits)
if test $ac_cv_have_scm_t_bits = yes; then
- AC_DEFINE(HAVE_SCM_T_BITS)
+ AC_DEFINE([HAVE_SCM_T_BITS])
fi
LIBS="$guile_compat_save_LIBS"
CFLAGS="$guile_compat_save_CFLAGS"])