Mercurial > hg > xemacs-beta
comparison src/redisplay.c @ 410:de805c49cfc1 r21-2-35
Import from CVS: tag r21-2-35
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:19:21 +0200 |
parents | 501cfd01ee6d |
children | 697ef44129c6 |
comparison
equal
deleted
inserted
replaced
409:301b9ebbdf3b | 410:de805c49cfc1 |
---|---|
38 Third: It Is Better To Be Fast Than Not To Be | 38 Third: It Is Better To Be Fast Than Not To Be |
39 ****************************************************************************/ | 39 ****************************************************************************/ |
40 | 40 |
41 #include <config.h> | 41 #include <config.h> |
42 #include "lisp.h" | 42 #include "lisp.h" |
43 #include <limits.h> | |
44 | 43 |
45 #include "buffer.h" | 44 #include "buffer.h" |
46 #include "commands.h" | 45 #include "commands.h" |
47 #include "debug.h" | 46 #include "debug.h" |
48 #include "device.h" | 47 #include "device.h" |
62 #include "line-number.h" | 61 #include "line-number.h" |
63 #ifdef FILE_CODING | 62 #ifdef FILE_CODING |
64 #include "file-coding.h" | 63 #include "file-coding.h" |
65 #endif | 64 #endif |
66 | 65 |
66 #include "sysfile.h" | |
67 | |
67 #ifdef HAVE_TTY | 68 #ifdef HAVE_TTY |
68 #include "console-tty.h" | 69 #include "console-tty.h" |
69 #ifdef HAVE_UNISTD_H | |
70 #include <unistd.h> /* for isatty() */ | |
71 #endif | |
72 #endif /* HAVE_TTY */ | 70 #endif /* HAVE_TTY */ |
73 | 71 |
74 /* Note: We have to be careful throughout this code to properly handle | 72 /* Note: We have to be careful throughout this code to properly handle |
75 and differentiate between Bufbytes and Emchars. | 73 and differentiate between Bufbytes and Emchars. |
76 | 74 |