diff options
| author | Jim Blandy | 1993-05-10 23:58:36 +0000 |
|---|---|---|
| committer | Jim Blandy | 1993-05-10 23:58:36 +0000 |
| commit | 942990d1fb356401fe0e6afbde2d047df44ff1b8 (patch) | |
| tree | 797a5cbd5b8b9cd4cd64b99116257a625092ade8 | |
| parent | ee8f40ccfc506e0b534f30b71666949906d77d94 (diff) | |
| download | emacs-942990d1fb356401fe0e6afbde2d047df44ff1b8.tar.gz emacs-942990d1fb356401fe0e6afbde2d047df44ff1b8.zip | |
Use pushdef and popdef, instead of saving the macro's value in a
variable.
| -rwxr-xr-x | configure1.in | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/configure1.in b/configure1.in index a75861e593a..4ea389dd675 100755 --- a/configure1.in +++ b/configure1.in | |||
| @@ -998,11 +998,10 @@ dnl so (as far as I can tell) there's no way to compute the value | |||
| 998 | dnl the CPP macro should receive. We cripple that quoting for a | 998 | dnl the CPP macro should receive. We cripple that quoting for a |
| 999 | dnl bit, invoke AC_DEFINE, and then uncripple it. | 999 | dnl bit, invoke AC_DEFINE, and then uncripple it. |
| 1000 | 1000 | ||
| 1001 | define([hold_ac_define_sedquote], defn([AC_DEFINE_SEDQUOTE])) | 1001 | pushdef([AC_DEFINE_SEDQUOTE],[$1]) |
| 1002 | define([AC_DEFINE_SEDQUOTE],[$1]) | ||
| 1003 | AC_DEFINE(config_machfile, "\"${machfile}\"") | 1002 | AC_DEFINE(config_machfile, "\"${machfile}\"") |
| 1004 | AC_DEFINE(config_opsysfile, "\"${opsysfile}\"") | 1003 | AC_DEFINE(config_opsysfile, "\"${opsysfile}\"") |
| 1005 | define([AC_DEFINE_SEDQUOTE],hold_ac_define_sedquote) | 1004 | popdef([AC_DEFINE_SEDQUOTE]) |
| 1006 | 1005 | ||
| 1007 | AC_DEFINE(LD_SWITCH_X_SITE, ${LD_SWITCH_X_SITE}) | 1006 | AC_DEFINE(LD_SWITCH_X_SITE, ${LD_SWITCH_X_SITE}) |
| 1008 | AC_DEFINE(C_SWITCH_X_SITE, ${C_SWITCH_X_SITE}) | 1007 | AC_DEFINE(C_SWITCH_X_SITE, ${C_SWITCH_X_SITE}) |