aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/terminfo.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/terminfo.c b/src/terminfo.c
index 51fd32e9e01..0765996401f 100644
--- a/src/terminfo.c
+++ b/src/terminfo.c
@@ -23,9 +23,12 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */
23 23
24/* Define these variables that serve as global parameters to termcap, 24/* Define these variables that serve as global parameters to termcap,
25 so that we do not need to conditionalize the places in Emacs 25 so that we do not need to conditionalize the places in Emacs
26 that set them. */ 26 that set them. But don't do that for terminfo, as that could
27 cause link errors when using -fno-common. */
27 28
29#if !TERMINFO
28char *UP, *BC, PC; 30char *UP, *BC, PC;
31#endif
29 32
30/* Interface to curses/terminfo library. 33/* Interface to curses/terminfo library.
31 Turns out that all of the terminfo-level routines look 34 Turns out that all of the terminfo-level routines look