comparison src/terminfo.c @ 96675:d45acf0c8d23

merging Emacs.app (NeXTstep port)
author Adrian Robert <Adrian.B.Robert@gmail.com>
date Tue, 15 Jul 2008 18:15:18 +0000
parents 8971ddf55736
children f802294e840d
comparison
equal deleted inserted replaced
96674:ff312a846b25 96675:d45acf0c8d23
22 22
23 /* Define these variables that serve as global parameters to termcap, 23 /* Define these variables that serve as global parameters to termcap,
24 so that we do not need to conditionalize the places in Emacs 24 so that we do not need to conditionalize the places in Emacs
25 that set them. */ 25 that set them. */
26 26
27 /* Causes a conflict on OS X 10.3 .*/
28 #ifndef NS_IMPL_COCOA
27 char *UP, *BC, PC; 29 char *UP, *BC, PC;
30 #endif
28 31
29 /* Interface to curses/terminfo library. 32 /* Interface to curses/terminfo library.
30 Turns out that all of the terminfo-level routines look 33 Turns out that all of the terminfo-level routines look
31 like their termcap counterparts except for tparm, which replaces 34 like their termcap counterparts except for tparm, which replaces
32 tgoto. Not only is the calling sequence different, but the string 35 tgoto. Not only is the calling sequence different, but the string