/[emacs]/emacs/src/term.c
ViewVC logotype

Diff of /emacs/src/term.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.159 by handa, Sun Dec 12 03:31:00 2004 UTC revision 1.160 by handa, Thu Jan 6 00:47:50 2005 UTC
# Line 1  Line 1 
1  /* Terminal control module for terminals described by TERMCAP  /* Terminal control module for terminals described by TERMCAP
2     Copyright (C) 1985, 86, 87, 93, 94, 95, 98, 2000, 2001, 2002     Copyright (C) 1985, 86, 87, 93, 94, 95, 98, 2000, 2001, 2002, 2005
3     Free Software Foundation, Inc.     Free Software Foundation, Inc.
4    
5  This file is part of GNU Emacs.  This file is part of GNU Emacs.
# Line 869  encode_terminal_code (src, src_len, codi Line 869  encode_terminal_code (src, src_len, codi
869                    if (! STRING_MULTIBYTE (string))                    if (! STRING_MULTIBYTE (string))
870                      string = string_to_multibyte (string);                      string = string_to_multibyte (string);
871                    nbytes = buf - encode_terminal_buf;                    nbytes = buf - encode_terminal_buf;
872                    if (nbytes + SBYTES (string) < encode_terminal_bufsize)                    if (encode_terminal_bufsize < nbytes + SBYTES (string))
873                      {                      {
874                        encode_terminal_bufsize = nbytes + SBYTES (string);                        encode_terminal_bufsize = nbytes + SBYTES (string);
875                        encode_terminal_buf = xrealloc (encode_terminal_buf,                        encode_terminal_buf = xrealloc (encode_terminal_buf,

Legend:
Removed from v.1.159  
changed lines
  Added in v.1.160

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26