diff options
| author | Dan Nicolaescu | 2008-07-27 18:24:48 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2008-07-27 18:24:48 +0000 |
| commit | 9e2a2647758db83b490e2993aa31cd4607305a82 (patch) | |
| tree | 9c3d41b47bcd316c60d56bef8d7fd32789e59411 /src/termcap.c | |
| parent | 7f19297073b2dd6c28987bf5663933591f59e91e (diff) | |
| download | emacs-9e2a2647758db83b490e2993aa31cd4607305a82.tar.gz emacs-9e2a2647758db83b490e2993aa31cd4607305a82.zip | |
Remove support for Mac Carbon.
* mactoolbox.c:
* macterm.h:
* macterm.c:
* macselect.c:
* macmenu.c:
* macgui.h:
* macfns.c:
* mac.c: Remove file.
* s/darwin.h:
* m/intel386.h:
* xfaces.c:
* xdisp.c:
* window.c:
* tparam.c:
* termhooks.h:
* termcap.c:
* term.c:
* syssignal.h:
* sysselect.h:
* sysdep.c:
* process.c:
* lread.c:
* lisp.h:
* keyboard.c:
* image.c:
* fringe.c:
* frame.h:
* frame.c:
* fontset.c:
* font.h:
* font.c:
* fns.c:
* fileio.c:
* emacs.c:
* dispnew.c:
* dispextern.h:
* config.in:
* atimer.c:
* Makefile.in: Remove code for Carbon
* erc.el: Remove code for Carbon.
Remove support for Mac Carbon.
* term/mac-win.el: Remove file
* international/mule-cmds.el:
* version.el:
* startup.el:
* simple.el:
* mwheel.el:
* mouse.el:
* loadup.el:
* isearch.el:
* info.el:
* frame.el:
* faces.el:
* disp-table.el:
* cus-start.el:
* cus-face.el:
* cus-edit.el:
* Makefile.in: Remove code for Carbon.
Remove support for Mac Carbon.
* makefile.w32-in:
* emacsclient.c: Remove code for Carbon.
* PROBLEMS:
* MACHINES: Remove mentions of Mac Carbon.
* ns-emacs.texi:
* faq.texi: Remove mentions of Mac Carbon.
* os.texi:
* frames.texi:
* display.texi: Remove mentions of Mac Carbon.
* xresources.texi: Remove mentions of Mac Carbon.
* make-tarball.txt:
* admin.el:
* FOR-RELEASE:
* CPP-DEFINES: Remove mentions of Mac Carbon.
Remove support for Mac Carbon.
* mac: Remove directory.
* make-dist:
* configure.in:
* README:
* Makefile.in:
* INSTALL: Remove code for Carbon.
* configure: Regenerate.
Diffstat (limited to 'src/termcap.c')
| -rw-r--r-- | src/termcap.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/termcap.c b/src/termcap.c index 411ab1f2fbe..291857697d8 100644 --- a/src/termcap.c +++ b/src/termcap.c | |||
| @@ -144,9 +144,6 @@ find_capability (bp, cap) | |||
| 144 | return NULL; | 144 | return NULL; |
| 145 | } | 145 | } |
| 146 | 146 | ||
| 147 | /* These are already defined in the System framework in Mac OS X and | ||
| 148 | cause prebinding to fail. */ | ||
| 149 | #ifndef MAC_OSX | ||
| 150 | int | 147 | int |
| 151 | tgetnum (cap) | 148 | tgetnum (cap) |
| 152 | char *cap; | 149 | char *cap; |
| @@ -180,7 +177,6 @@ tgetstr (cap, area) | |||
| 180 | return NULL; | 177 | return NULL; |
| 181 | return tgetst1 (ptr, area); | 178 | return tgetst1 (ptr, area); |
| 182 | } | 179 | } |
| 183 | #endif /* MAC_OSX */ | ||
| 184 | 180 | ||
| 185 | #ifdef IS_EBCDIC_HOST | 181 | #ifdef IS_EBCDIC_HOST |
| 186 | /* Table, indexed by a character in range 0200 to 0300 with 0200 subtracted, | 182 | /* Table, indexed by a character in range 0200 to 0300 with 0200 subtracted, |
| @@ -345,11 +341,7 @@ short ospeed; | |||
| 345 | int tputs_baud_rate; | 341 | int tputs_baud_rate; |
| 346 | #endif | 342 | #endif |
| 347 | 343 | ||
| 348 | /* Already defined in the System framework in Mac OS X and causes | ||
| 349 | prebinding to fail. */ | ||
| 350 | #ifndef MAC_OSX | ||
| 351 | char PC; | 344 | char PC; |
| 352 | #endif /* MAC_OSX */ | ||
| 353 | 345 | ||
| 354 | #ifndef emacs | 346 | #ifndef emacs |
| 355 | /* Actual baud rate if positive; | 347 | /* Actual baud rate if positive; |
| @@ -368,9 +360,6 @@ static int speeds[] = | |||
| 368 | 360 | ||
| 369 | #endif /* not emacs */ | 361 | #endif /* not emacs */ |
| 370 | 362 | ||
| 371 | /* Already defined in the System framework in Mac OS X and causes | ||
| 372 | prebinding to fail. */ | ||
| 373 | #ifndef MAC_OSX | ||
| 374 | void | 363 | void |
| 375 | tputs (str, nlines, outfun) | 364 | tputs (str, nlines, outfun) |
| 376 | register char *str; | 365 | register char *str; |
| @@ -433,7 +422,6 @@ tputs (str, nlines, outfun) | |||
| 433 | while (padcount-- > 0) | 422 | while (padcount-- > 0) |
| 434 | (*outfun) (PC); | 423 | (*outfun) (PC); |
| 435 | } | 424 | } |
| 436 | #endif /* MAC_OSX */ | ||
| 437 | 425 | ||
| 438 | /* Finding the termcap entry in the termcap data base. */ | 426 | /* Finding the termcap entry in the termcap data base. */ |
| 439 | 427 | ||
| @@ -505,9 +493,6 @@ valid_filename_p (fn) | |||
| 505 | 0 if the data base is accessible but the type NAME is not defined | 493 | 0 if the data base is accessible but the type NAME is not defined |
| 506 | in it, and some other value otherwise. */ | 494 | in it, and some other value otherwise. */ |
| 507 | 495 | ||
| 508 | /* Already defined in the System framework in Mac OS X and causes | ||
| 509 | prebinding to fail. */ | ||
| 510 | #ifndef MAC_OSX | ||
| 511 | int | 496 | int |
| 512 | tgetent (bp, name) | 497 | tgetent (bp, name) |
| 513 | char *bp, *name; | 498 | char *bp, *name; |
| @@ -666,7 +651,6 @@ tgetent (bp, name) | |||
| 666 | term_entry = bp; | 651 | term_entry = bp; |
| 667 | return 1; | 652 | return 1; |
| 668 | } | 653 | } |
| 669 | #endif /* MAC_OSX */ | ||
| 670 | 654 | ||
| 671 | /* Given file open on FD and buffer BUFP, | 655 | /* Given file open on FD and buffer BUFP, |
| 672 | scan the file from the beginning until a line is found | 656 | scan the file from the beginning until a line is found |