Mercurial > hg > xemacs-beta
comparison lisp/psgml/iso-sgml.el @ 195:a2f645c6b9f8 r20-3b24
Import from CVS: tag r20-3b24
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:59:05 +0200 |
parents | 131b0175ea99 |
children |
comparison
equal
deleted
inserted
replaced
194:2947057885e5 | 195:a2f645c6b9f8 |
---|---|
14 ;; LCD Archive Entry: | 14 ;; LCD Archive Entry: |
15 ;; iso-sgml|Frederic Lepied|lepied@cenaath.cena.dgac.fr| | 15 ;; iso-sgml|Frederic Lepied|lepied@cenaath.cena.dgac.fr| |
16 ;; Edit SGML or HTML buffers with ISO 8859-1 (Latin-1) display| | 16 ;; Edit SGML or HTML buffers with ISO 8859-1 (Latin-1) display| |
17 ;; 10-May-1995|1.4|~/misc/iso-sgml.el.Z| | 17 ;; 10-May-1995|1.4|~/misc/iso-sgml.el.Z| |
18 | 18 |
19 ;; $Id: iso-sgml.el,v 1.1.1.1 1996/12/18 22:43:36 steve Exp $ | 19 ;; $Id: iso-sgml.el,v 1.2 1997/09/27 16:57:46 steve Exp $ |
20 | 20 |
21 ;; This program is free software; you can redistribute it and/or modify | 21 ;; This program is free software; you can redistribute it and/or modify |
22 ;; it under the terms of the GNU General Public License as published by | 22 ;; it under the terms of the GNU General Public License as published by |
23 ;; the Free Software Foundation; either version 2, or (at your option) | 23 ;; the Free Software Foundation; either version 2, or (at your option) |
24 ;; any later version. | 24 ;; any later version. |
36 ;; Commentary: | 36 ;; Commentary: |
37 ;; Based on iso-cvt.el from Michael Gschwind <mike@vlsivie.tuwien.ac.at>, | 37 ;; Based on iso-cvt.el from Michael Gschwind <mike@vlsivie.tuwien.ac.at>, |
38 ;; iso-sgml.el transparently displays entity references in SGML or HTML | 38 ;; iso-sgml.el transparently displays entity references in SGML or HTML |
39 ;; buffers as ISO 8859-1 (aka Latin-1) characters. | 39 ;; buffers as ISO 8859-1 (aka Latin-1) characters. |
40 ;; Modified for XEmacs 19.15 to include the proposed extensions to Latin-1 | 40 ;; Modified for XEmacs 19.15 to include the proposed extensions to Latin-1 |
41 ;; by Steve Baur <steve@miranova.com> | 41 ;; by Steve Baur <steve@altair.xemacs.org> |
42 | 42 |
43 ;; SEE ALSO: | 43 ;; SEE ALSO: |
44 ;; iso-cvt.el | 44 ;; iso-cvt.el |
45 ;; If you are interested in questions related to using the ISO 8859-1 | 45 ;; If you are interested in questions related to using the ISO 8859-1 |
46 ;; characters set (configuring emacs, Unix, etc. to use ISO), then you | 46 ;; characters set (configuring emacs, Unix, etc. to use ISO), then you |
54 ;; the variable isosgml-modes-list like this : | 54 ;; the variable isosgml-modes-list like this : |
55 ;; (setq isosgml-modes-list '(my-mode)) | 55 ;; (setq isosgml-modes-list '(my-mode)) |
56 | 56 |
57 ;; Code: | 57 ;; Code: |
58 | 58 |
59 (defconst isosgml-version "$Id: iso-sgml.el,v 1.1.1.1 1996/12/18 22:43:36 steve Exp $" | 59 (defconst isosgml-version "$Id: iso-sgml.el,v 1.2 1997/09/27 16:57:46 steve Exp $" |
60 "iso-sgml RCS version number") | 60 "iso-sgml RCS version number") |
61 | 61 |
62 (defvar isosgml-modes-list '(html-mode html-helper-mode sgml-mode) | 62 (defvar isosgml-modes-list '(html-mode html-helper-mode sgml-mode) |
63 "*List of modes to translate between SGML or HTML entity references | 63 "*List of modes to translate between SGML or HTML entity references |
64 and the ISO 8859-1 character set.") | 64 and the ISO 8859-1 character set.") |
226 (provide 'iso-sgml) | 226 (provide 'iso-sgml) |
227 | 227 |
228 ;; iso-sgml.el ends here | 228 ;; iso-sgml.el ends here |
229 | 229 |
230 ; $Log: iso-sgml.el,v $ | 230 ; $Log: iso-sgml.el,v $ |
231 ; Revision 1.1.1.1 1996/12/18 22:43:36 steve | 231 ; Revision 1.2 1997/09/27 16:57:46 steve |
232 ; XEmacs 20.0 -- Beta 30 | 232 ; Patches to beta24 |
233 ; | 233 ; |
234 ; Revision 1.4 1995/05/10 06:19:41 lepied | 234 ; Revision 1.4 1995/05/10 06:19:41 lepied |
235 ; * protect code with unwind-protect to prevent errors | 235 ; * protect code with unwind-protect to prevent errors |
236 ; | 236 ; |
237 ; Revision 1.3 1994/12/07 09:08:07 lepied | 237 ; Revision 1.3 1994/12/07 09:08:07 lepied |