diff options
author | xtraeme <xtraeme@pkgsrc.org> | 2004-05-13 03:47:28 +0000 |
---|---|---|
committer | xtraeme <xtraeme@pkgsrc.org> | 2004-05-13 03:47:28 +0000 |
commit | 526e836b48a24a111f49fac06c156ea55cce0248 (patch) | |
tree | ca1b88392c683212c36b562f62620121211a2182 /www/amaya/patches/patch-ad | |
parent | 4978b83642065055e9c4872eb692f0a3fc4c448c (diff) | |
download | pkgsrc-526e836b48a24a111f49fac06c156ea55cce0248.tar.gz |
Update www/amaya to 8.5
User Interface/Editing
Bug fixes
* Windows platforms only: several transformations crashed.
* Fix crashes in the spell checker.
* GTK version: Amaya is now able to copy and paste utf-8 characters.
* A significant space were sometimes removed after a copy + paste
command.
CSS
Bug fixes
* Local CSS files were not reparsed when they are saved.
* Fix a confusion with classes, pseudo-classes, ids, and attributes.
* Amaya now generates an empty User style sheet ($AmayaHome/amaya.css)
if this file doesn't exist.
* Amaya didn't parse correctly non-quoted font family names containing
whitespace.
(X)HTML
Bug fixes
* Amaya generated a new line character after an <img> element within
headlines (<h1>, <h2>, etc.).
And more... please review http://www.w3.org/Amaya/User/New.html
Diffstat (limited to 'www/amaya/patches/patch-ad')
-rw-r--r-- | www/amaya/patches/patch-ad | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/www/amaya/patches/patch-ad b/www/amaya/patches/patch-ad new file mode 100644 index 00000000000..a8f32e8f9b7 --- /dev/null +++ b/www/amaya/patches/patch-ad @@ -0,0 +1,13 @@ +$NetBSD: patch-ad,v 1.8 2004/05/13 03:47:29 xtraeme Exp $ + +--- ../tools/mkdep/mkdep.c.orig 2004-05-13 05:34:59.000000000 +0200 ++++ ../tools/mkdep/mkdep.c 2004-05-13 05:35:12.000000000 +0200 +@@ -385,7 +385,7 @@ + res = munmap(mmap_map, (size_t) mmap_mapsize); + if (res < 0) perror("unmap failed"); + #else +- mmap_map = malloc(mmap_mapsize); ++ mmap_map = (char *)malloc(mmap_mapsize); + if (mmap_map == NULL) { + perror("malloc failed"); + exit(1); |