diff options
| author | Eli Zaretskii | 2011-03-11 11:41:56 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2011-03-11 11:41:56 +0200 |
| commit | 7ef4b50c04d80cbc2b247f997e9133fbce70be05 (patch) | |
| tree | f61246eb91390dec44320f4a9621b906f42b3cbf /src/term.c | |
| parent | 4f1f90cd9dac7134d85abe6e732afe1a6a9257f7 (diff) | |
| download | emacs-7ef4b50c04d80cbc2b247f997e9133fbce70be05.tar.gz emacs-7ef4b50c04d80cbc2b247f997e9133fbce70be05.zip | |
Fix MS-Windows build broken by 2011-03-11T07:24:21Z!eggert@cs.ucla.edu.
src/term.c (encode_terminal_code): Now external again, used by
w32console.c and msdos.c.
src/termhooks.h (encode_terminal_code): Declare prototype.
src/msdos.c (encode_terminal_code): Don't declare prototype.
src/makefile.w32-in ($(BLD)/term.$(O), ($(BLD)/tparam.$(O)): Depend
on $(SRC)/tparam.h, see 2011-03-11T07:24:21Z!eggert@cs.ucla.edu.
Diffstat (limited to 'src/term.c')
| -rw-r--r-- | src/term.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/term.c b/src/term.c index e78e2e68814..e84bbe125f8 100644 --- a/src/term.c +++ b/src/term.c | |||
| @@ -501,7 +501,7 @@ static int encode_terminal_dst_size; | |||
| 501 | Set CODING->produced to the byte-length of the resulting byte | 501 | Set CODING->produced to the byte-length of the resulting byte |
| 502 | sequence, and return a pointer to that byte sequence. */ | 502 | sequence, and return a pointer to that byte sequence. */ |
| 503 | 503 | ||
| 504 | static unsigned char * | 504 | unsigned char * |
| 505 | encode_terminal_code (struct glyph *src, int src_len, struct coding_system *coding) | 505 | encode_terminal_code (struct glyph *src, int src_len, struct coding_system *coding) |
| 506 | { | 506 | { |
| 507 | struct glyph *src_end = src + src_len; | 507 | struct glyph *src_end = src + src_len; |