summaryrefslogtreecommitdiffstats
path: root/mbbsd/chat.c
diff options
context:
space:
mode:
authorkcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2004-11-06 06:09:09 +0800
committerkcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2004-11-06 06:09:09 +0800
commit761f24e6af4c4691bcc0bcabba0197c0426d233d (patch)
treef0951ec853524f391fdc7785f11744ea42c13212 /mbbsd/chat.c
parent0e4f3ac7f8a565f8aebf8a337f648a36d3ab86fe (diff)
downloadpttbbs-761f24e6af4c4691bcc0bcabba0197c0426d233d.tar
pttbbs-761f24e6af4c4691bcc0bcabba0197c0426d233d.tar.gz
pttbbs-761f24e6af4c4691bcc0bcabba0197c0426d233d.tar.bz2
pttbbs-761f24e6af4c4691bcc0bcabba0197c0426d233d.tar.lz
pttbbs-761f24e6af4c4691bcc0bcabba0197c0426d233d.tar.xz
pttbbs-761f24e6af4c4691bcc0bcabba0197c0426d233d.tar.zst
pttbbs-761f24e6af4c4691bcc0bcabba0197c0426d233d.zip
Backup screen without hole. Save 8~11kb for normal user.
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@2314 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/chat.c')
-rw-r--r--mbbsd/chat.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/mbbsd/chat.c b/mbbsd/chat.c
index ac8ace57..5e9be5e3 100644
--- a/mbbsd/chat.c
+++ b/mbbsd/chat.c
@@ -493,12 +493,13 @@ t_chat()
} else if (ch == Ctrl('E')) {
currchar = strlen(inbuf);
} else if (ch == Ctrl('I')) {
- screenline_t *screen0 = calloc(t_lines, sizeof(screenline_t));
+ void *screen0;
- memcpy(screen0, big_picture, t_lines * sizeof(screenline_t));
+ screen0=malloc(screen_backupsize(t_lines, big_picture));
+ screen_backup(t_lines, big_picture, screen0);
add_io(0, 0);
t_idle();
- memcpy(big_picture, screen0, t_lines * sizeof(screenline_t));
+ screen_restore(t_lines, big_picture, screen0);
free(screen0);
redoscr();
add_io(cfd, 0);