diff options
author | minoura <minoura@pkgsrc.org> | 2002-10-18 14:50:14 +0000 |
---|---|---|
committer | minoura <minoura@pkgsrc.org> | 2002-10-18 14:50:14 +0000 |
commit | 0ebe54ef115e9bd6e08670aecd66f02fe7218b7b (patch) | |
tree | e02d98227bc2f518e3f16a893d11bcf45f9bde53 /www/w3/patches | |
parent | 6ce9e0b08a07afcecc4ac1f7dbc80f0785433f9f (diff) | |
download | pkgsrc-0ebe54ef115e9bd6e08670aecd66f02fe7218b7b.tar.gz |
Upgraded to 4.0pre.47.
Also quick port to Emacs 21. Pre.47's changes are mostly to support Emacs 21,
but it has at least 2 problems:
- It does not work in a TTY.
- Mule handling is insufficient.
Diffstat (limited to 'www/w3/patches')
-rw-r--r-- | www/w3/patches/patch-ab | 24 | ||||
-rw-r--r-- | www/w3/patches/patch-ac | 14 |
2 files changed, 38 insertions, 0 deletions
diff --git a/www/w3/patches/patch-ab b/www/w3/patches/patch-ab new file mode 100644 index 00000000000..52129206549 --- /dev/null +++ b/www/w3/patches/patch-ab @@ -0,0 +1,24 @@ +$NetBSD: patch-ab,v 1.1 2002/10/18 14:50:15 minoura Exp $ + +--- lisp/mule-sysdp.el.orig Sun Nov 14 22:00:12 1999 ++++ lisp/mule-sysdp.el Thu Oct 17 04:05:16 2002 +@@ -23,10 +23,15 @@ + mule-version)) + (if (or (fboundp 'kinsoku) + (boundp 'kinsoku-ascii)) +- (string-to-number (substring +- mule-version +- (match-beginning 0) +- (match-end 0))) ++ (let (vers) ++ (setq vers ++ (string-to-number ++ (substring mule-version ++ (match-beginning 0) ++ (match-end 0)))) ++ (if (> vers 4.0) ++ 4.0 ++ vers)) + 0)) + (t 2.3)) + 0) diff --git a/www/w3/patches/patch-ac b/www/w3/patches/patch-ac new file mode 100644 index 00000000000..e86aa65dddd --- /dev/null +++ b/www/w3/patches/patch-ac @@ -0,0 +1,14 @@ +$NetBSD: patch-ac,v 1.1 2002/10/18 14:50:15 minoura Exp $ + +--- lisp/font.el.orig Wed Nov 28 20:04:21 2001 ++++ lisp/font.el Thu Oct 17 06:26:04 2002 +@@ -996,7 +996,8 @@ + (set-face-property face 'font-specification nil) + (apply 'set-face-font face font args)))) + +-(if font-running-emacs-new-redisplay ++(if (and font-running-emacs-new-redisplay ++ window-system) + (fset 'font-set-face-font 'font-set-face-font-new-redisplay)) + + ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |