Upgrade to 1.2.3.

Approved by:	maintainer
This commit is contained in:
Jun Kuriyama 2001-12-03 05:26:03 +00:00
parent 066b60ed0c
commit 5bab2144e5
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=50937
6 changed files with 28 additions and 26 deletions

View File

@ -7,15 +7,16 @@
PORTNAME= psgml
PORTVERSION= ${PSGML_VER}
PORTREVISION= 1
CATEGORIES= editors elisp
MASTER_SITES= ftp://ftp.lysator.liu.se/pub/sgml/
MASTER_SITES= ftp://ftp.lysator.liu.se/pub/sgml/ \
${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= psgml
PKGNAMESUFFIX= -${EMACS_PORT_NAME}
MAINTAINER?= shige@FreeBSD.org
# distfile version
PSGML_VER= 1.2.2
PSGML_VER= 1.2.3
PSGML_STARTUPEL= psgml-startup.el
SCRIPTS_ENV= TARGETS="${PSGML_STARTUPEL}"

View File

@ -1 +1 @@
MD5 (psgml-1.2.2.tar.gz) = b7e68d02b08cfb684926b93ada898f1c
MD5 (psgml-1.2.3.tar.gz) = 447e9377439dbf3063febbf7a35b7255

View File

@ -1,6 +1,6 @@
--- psgml-parse.el.orig Mon Nov 16 06:45:04 1998
+++ psgml-parse.el Sat Jan 23 20:28:15 1999
@@ -1217,6 +1217,11 @@
--- psgml-parse.el.orig Sat Nov 10 04:26:25 2001
+++ psgml-parse.el Fri Nov 23 13:50:26 2001
@@ -1243,6 +1243,11 @@
(sgml-check-dtd-subset)
(sgml-pop-entity)
(erase-buffer)
@ -12,10 +12,10 @@
(sgml-write-dtd sgml-dtd-info to-file)
t))
@@ -1244,6 +1249,10 @@
@@ -1270,6 +1275,10 @@
"Merge the binary coded dtd in the current buffer with the current dtd.
The current dtd is the variable sgml-dtd-info. Return t if mereged
was successfull or nil if failed."
The current dtd is the variable sgml-dtd-info. Return t if the merge
was successful or nil if failed."
+ (if (string-match "Emacs 20\." (emacs-version))
+ (set-buffer-file-coding-system 'binary)
+ (if (boundp 'MULE)
@ -23,7 +23,7 @@
(goto-char (point-min))
(sgml-read-sexp) ; skip filev
(let ((dependencies (sgml-read-sexp))
@@ -2461,7 +2470,12 @@
@@ -2489,7 +2498,12 @@
(set-buffer sgml-scratch-buffer)
;; For MULE to not misinterpret binary data set the mc-flag
;; (reported by Jeffrey Friedl <jfriedl@nff.ncl.omron.co.jp>)
@ -32,8 +32,8 @@
+ ;; For MULE/Emacs 20 to not misinterpret binary data
+ (if (string-match "Emacs 20\." (emacs-version))
+ (set-buffer-file-coding-system 'binary)
+ (if (boundp 'MULE)
+ (set-file-coding-system *noconv*)))
+ (if (boundp 'MULE)
+ (set-file-coding-system *noconv*)))
(when (eq sgml-scratch-buffer (default-value 'sgml-scratch-buffer))
(make-local-variable 'sgml-scratch-buffer)
(setq sgml-scratch-buffer nil))

View File

@ -7,15 +7,16 @@
PORTNAME= psgml
PORTVERSION= ${PSGML_VER}
PORTREVISION= 1
CATEGORIES= editors elisp
MASTER_SITES= ftp://ftp.lysator.liu.se/pub/sgml/
MASTER_SITES= ftp://ftp.lysator.liu.se/pub/sgml/ \
${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= psgml
PKGNAMESUFFIX= -${EMACS_PORT_NAME}
MAINTAINER?= shige@FreeBSD.org
# distfile version
PSGML_VER= 1.2.2
PSGML_VER= 1.2.3
PSGML_STARTUPEL= psgml-startup.el
SCRIPTS_ENV= TARGETS="${PSGML_STARTUPEL}"

View File

@ -1 +1 @@
MD5 (psgml-1.2.2.tar.gz) = b7e68d02b08cfb684926b93ada898f1c
MD5 (psgml-1.2.3.tar.gz) = 447e9377439dbf3063febbf7a35b7255

View File

@ -1,6 +1,6 @@
--- psgml-parse.el.orig Mon Nov 16 06:45:04 1998
+++ psgml-parse.el Sat Jan 23 20:28:15 1999
@@ -1217,6 +1217,11 @@
--- psgml-parse.el.orig Sat Nov 10 04:26:25 2001
+++ psgml-parse.el Fri Nov 23 13:50:26 2001
@@ -1243,6 +1243,11 @@
(sgml-check-dtd-subset)
(sgml-pop-entity)
(erase-buffer)
@ -12,10 +12,10 @@
(sgml-write-dtd sgml-dtd-info to-file)
t))
@@ -1244,6 +1249,10 @@
@@ -1270,6 +1275,10 @@
"Merge the binary coded dtd in the current buffer with the current dtd.
The current dtd is the variable sgml-dtd-info. Return t if mereged
was successfull or nil if failed."
The current dtd is the variable sgml-dtd-info. Return t if the merge
was successful or nil if failed."
+ (if (string-match "Emacs 20\." (emacs-version))
+ (set-buffer-file-coding-system 'binary)
+ (if (boundp 'MULE)
@ -23,7 +23,7 @@
(goto-char (point-min))
(sgml-read-sexp) ; skip filev
(let ((dependencies (sgml-read-sexp))
@@ -2461,7 +2470,12 @@
@@ -2489,7 +2498,12 @@
(set-buffer sgml-scratch-buffer)
;; For MULE to not misinterpret binary data set the mc-flag
;; (reported by Jeffrey Friedl <jfriedl@nff.ncl.omron.co.jp>)
@ -32,8 +32,8 @@
+ ;; For MULE/Emacs 20 to not misinterpret binary data
+ (if (string-match "Emacs 20\." (emacs-version))
+ (set-buffer-file-coding-system 'binary)
+ (if (boundp 'MULE)
+ (set-file-coding-system *noconv*)))
+ (if (boundp 'MULE)
+ (set-file-coding-system *noconv*)))
(when (eq sgml-scratch-buffer (default-value 'sgml-scratch-buffer))
(make-local-variable 'sgml-scratch-buffer)
(setq sgml-scratch-buffer nil))