diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/terminfo.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/terminfo.c b/src/terminfo.c index 15aff317f15..a9c9572bbb2 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/>. */ | |||
| 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. But don't do that for terminfo, as that could | 26 | that set them. But don't do that if terminfo defines them, as that |
| 27 | cause link errors when using -fno-common. */ | 27 | could cause link errors when using -fno-common. */ |
| 28 | 28 | ||
| 29 | #if !TERMINFO | 29 | #ifndef TERMINFO_DEFINES_BC |
| 30 | char *UP, *BC, PC; | 30 | char *UP, *BC, PC; |
| 31 | #endif | 31 | #endif |
| 32 | 32 | ||