aboutsummaryrefslogtreecommitdiff
path: root/editors/psgml/files/patch-ag
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2000-07-21 18:15:36 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2000-07-21 18:15:36 +0000
commit70f89778c0f2f76bc2f8046e99cc55f2962ac9c2 (patch)
tree14c35099cfb4f4257c5e0b8e589d530fcb829468 /editors/psgml/files/patch-ag
parentf667b39b3c0614d5aeb9bcb4bac4a4b222408185 (diff)
downloadports-70f89778c0f2f76bc2f8046e99cc55f2962ac9c2.tar.gz
ports-70f89778c0f2f76bc2f8046e99cc55f2962ac9c2.zip
This commit was manufactured by cvs2svn to create tag 'RELEASE_4_1_0'.release/4.1.0
Notes
Notes: svn path=/head/; revision=30942 svn path=/tags/RELEASE_4_1_0/; revision=30943; tag=release/4.1.0
Diffstat (limited to 'editors/psgml/files/patch-ag')
-rw-r--r--editors/psgml/files/patch-ag39
1 files changed, 0 insertions, 39 deletions
diff --git a/editors/psgml/files/patch-ag b/editors/psgml/files/patch-ag
deleted file mode 100644
index 90792b64da9a..000000000000
--- a/editors/psgml/files/patch-ag
+++ /dev/null
@@ -1,39 +0,0 @@
---- 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 @@
- (sgml-check-dtd-subset)
- (sgml-pop-entity)
- (erase-buffer)
-+ ;; For Mule
-+ (if (string-match "Emacs 20\." (emacs-version))
-+ (set-buffer-file-coding-system 'binary)
-+ (if (boundp 'MULE)
-+ (set-file-coding-system *noconv*)))
- (sgml-write-dtd sgml-dtd-info to-file)
- t))
-
-@@ -1244,6 +1249,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."
-+ (if (string-match "Emacs 20\." (emacs-version))
-+ (set-buffer-file-coding-system 'binary)
-+ (if (boundp 'MULE)
-+ (set-file-coding-system *noconv*)))
- (goto-char (point-min))
- (sgml-read-sexp) ; skip filev
- (let ((dependencies (sgml-read-sexp))
-@@ -2461,7 +2470,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>)
-- (set 'mc-flag nil)
-+ (set 'mc-flag nil)
-+ ;; 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*)))
- (when (eq sgml-scratch-buffer (default-value 'sgml-scratch-buffer))
- (make-local-variable 'sgml-scratch-buffer)
- (setq sgml-scratch-buffer nil))