summaryrefslogtreecommitdiff
path: root/textproc/source-highlight/patches/patch-ae
diff options
context:
space:
mode:
Diffstat (limited to 'textproc/source-highlight/patches/patch-ae')
-rw-r--r--textproc/source-highlight/patches/patch-ae13
1 files changed, 0 insertions, 13 deletions
diff --git a/textproc/source-highlight/patches/patch-ae b/textproc/source-highlight/patches/patch-ae
deleted file mode 100644
index d6894d9f679..00000000000
--- a/textproc/source-highlight/patches/patch-ae
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-ae,v 1.4 2005/10/10 09:05:59 seb Exp $
-
---- src/lib/fileutil.cc.orig 2005-08-25 14:01:56.000000000 +0000
-+++ src/lib/fileutil.cc
-@@ -43,7 +43,7 @@ read_file(const string &fileName)
- // we open it as binary otherwise we may experience problems under
- // Windows system: when we fread, the number of char read can be
- // less then char_count, and thus we'd get an error...
-- ifstream file (fileName.c_str (), ios_base::binary);
-+ ifstream file (fileName.c_str (), ios::binary);
- if (! file.is_open () )
- file_error ("Error operning", fileName);
- else