summaryrefslogtreecommitdiff
path: root/src/terminfo.c
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2021-01-03 11:58:34 -0800
committerPaul Eggert <eggert@cs.ucla.edu>2021-01-03 11:58:34 -0800
commit2e09efdb6877a2c189385be45d4cdceb617b6c5d (patch)
treea404e20f44f2180400d7b9be30f1cda1bb6ca800 /src/terminfo.c
parent585997d05adde5a3510ce1221f9e8dd60407ce30 (diff)
downloademacs-2e09efdb6877a2c189385be45d4cdceb617b6c5d.tar.gz
Revert previous patch which was installed into wrong branch.
Diffstat (limited to 'src/terminfo.c')
-rw-r--r--src/terminfo.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/terminfo.c b/src/terminfo.c
index a9c9572bbb2..15aff317f15 100644
--- a/src/terminfo.c
+++ b/src/terminfo.c
@@ -23,10 +23,10 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */
/* Define these variables that serve as global parameters to termcap,
so that we do not need to conditionalize the places in Emacs
- that set them. But don't do that if terminfo defines them, as that
- could cause link errors when using -fno-common. */
+ that set them. But don't do that for terminfo, as that could
+ cause link errors when using -fno-common. */
-#ifndef TERMINFO_DEFINES_BC
+#if !TERMINFO
char *UP, *BC, PC;
#endif