1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00

fix various problems of this version.

This commit is contained in:
FUJISHIMA Satsuki 2001-07-29 19:17:35 +00:00
parent 4144817f7f
commit 99bc4f57da
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=45591
4 changed files with 36 additions and 0 deletions

View File

@ -7,6 +7,7 @@
PORTNAME= navi2ch
PORTVERSION= 010728
PORTREVISION= 1
CATEGORIES= japanese www elisp
MASTER_SITES= http://www.geocities.co.jp/SiliconValley-Oakland/7673/
PKGNAMESUFFIX= -${EMACS_PORT_NAME}

View File

@ -0,0 +1,11 @@
--- navi2ch-article.el.orig Thu Jul 26 23:56:48 2001
+++ navi2ch-article.el Mon Jul 30 03:33:57 2001
@@ -1189,7 +1189,7 @@
nil
(navi2ch-article-save-number)
t)
- navi2ch-article-important-mode)
+ navi2ch-article-important-mode nil)
(force-mode-line-update)
(let ((buffer-read-only nil))
(save-excursion

View File

@ -0,0 +1,10 @@
--- navi2ch-mona.el.orig Sat Jul 28 13:10:40 2001
+++ navi2ch-mona.el Mon Jul 30 03:37:44 2001
@@ -96,6 +96,7 @@
;; GNU emacs21 $B$G$OL@<(E*$K(B fontset $B$r:n$kI,MW$,$"$k(B
(if (and (boundp 'emacs-major-version)
(>= emacs-major-version 21)
+ (null (featurep 'xemacs))
window-system)
(progn
;; roman - normalface (16pt)

View File

@ -0,0 +1,14 @@
--- navi2ch-util.el.orig Thu Jul 26 23:56:48 2001
+++ navi2ch-util.el Mon Jul 30 03:41:39 2001
@@ -256,7 +256,10 @@
(defun navi2ch-browse-url (url)
- (browse-url url browse-url-new-window-p))
+ (browse-url
+ url
+ (cond ((get 'browse-url-new-window-p 'custom-type) browse-url-new-window-p)
+ ((get 'browse-url-new-window-flag 'custom-type) browse-url-new-window-flag))))
;; from apel
(defun navi2ch-put-alist (item value alist)