mirror of
https://github.com/hexchat/hexchat.git
synced 2024-11-05 10:42:33 +01:00
fix scrollback. thanks to a contributor.
This commit is contained in:
parent
3fab4f0d7d
commit
d2db3c24da
2
config.h
2
config.h
@ -3,7 +3,7 @@
|
||||
#define USE_GMODULE
|
||||
#define USE_PLUGIN
|
||||
#define PACKAGE_NAME "xchat"
|
||||
#define PACKAGE_VERSION "r1409-8"
|
||||
#define PACKAGE_VERSION "r1409-9"
|
||||
#define XCHATLIBDIR "."
|
||||
#define XCHATSHAREDIR "."
|
||||
#define OLD_PERL
|
||||
|
@ -325,7 +325,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/ssl.c xchat-wdk/src/comm
|
||||
#include <time.h> /* asctime() */
|
||||
diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/text.c xchat-wdk/src/common/text.c
|
||||
--- xchat-wdk.orig/src/common/text.c 2009-12-31 03:19:50 +0100
|
||||
+++ xchat-wdk/src/common/text.c 2010-03-29 15:02:51 +0200
|
||||
+++ xchat-wdk/src/common/text.c 2010-04-18 17:37:08 +0200
|
||||
@@ -19,13 +19,11 @@
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
@ -371,7 +371,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/text.c xchat-wdk/src/com
|
||||
+ }
|
||||
+
|
||||
+ /* Select which portions of the file we need (entire file) */
|
||||
+ map = (char *)MapViewOfFile(hMapFile, FILE_MAP_ALL_ACCESS, 0, 0, 0);
|
||||
+ map = (char *)MapViewOfFile(hMapFile, FILE_MAP_READ, 0, 0, 0);
|
||||
+
|
||||
+ if (map == NULL)
|
||||
+ {
|
||||
|
Loading…
Reference in New Issue
Block a user