[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/src/term.c
From: |
Kenichi Handa |
Subject: |
[Emacs-diffs] Changes to emacs/src/term.c |
Date: |
Wed, 05 Jan 2005 20:00:47 -0500 |
Index: emacs/src/term.c
diff -c emacs/src/term.c:1.159 emacs/src/term.c:1.160
*** emacs/src/term.c:1.159 Sun Dec 12 03:31:00 2004
--- emacs/src/term.c Thu Jan 6 00:47:50 2005
***************
*** 1,5 ****
/* Terminal control module for terminals described by TERMCAP
! Copyright (C) 1985, 86, 87, 93, 94, 95, 98, 2000, 2001, 2002
Free Software Foundation, Inc.
This file is part of GNU Emacs.
--- 1,5 ----
/* Terminal control module for terminals described by TERMCAP
! Copyright (C) 1985, 86, 87, 93, 94, 95, 98, 2000, 2001, 2002, 2005
Free Software Foundation, Inc.
This file is part of GNU Emacs.
***************
*** 869,875 ****
if (! STRING_MULTIBYTE (string))
string = string_to_multibyte (string);
nbytes = buf - encode_terminal_buf;
! if (nbytes + SBYTES (string) < encode_terminal_bufsize)
{
encode_terminal_bufsize = nbytes + SBYTES (string);
encode_terminal_buf = xrealloc (encode_terminal_buf,
--- 869,875 ----
if (! STRING_MULTIBYTE (string))
string = string_to_multibyte (string);
nbytes = buf - encode_terminal_buf;
! if (encode_terminal_bufsize < nbytes + SBYTES (string))
{
encode_terminal_bufsize = nbytes + SBYTES (string);
encode_terminal_buf = xrealloc (encode_terminal_buf,
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] Changes to emacs/src/term.c,
Kenichi Handa <=