Mercurial > hg > xemacs-beta
comparison lisp/psgml/psgml.el @ 108:360340f9fd5f r20-1b6
Import from CVS: tag r20-1b6
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:18:39 +0200 |
parents | 364816949b59 |
children | cca96a509cfe |
comparison
equal
deleted
inserted
replaced
107:523141596bda | 108:360340f9fd5f |
---|---|
1 ;;; psgml.el --- SGML-editing mode with parsing support | 1 ;;; psgml.el --- SGML-editing mode with parsing support |
2 ;; $Id: psgml.el,v 1.5 1997/01/30 02:22:44 steve Exp $ | 2 ;; $Id: psgml.el,v 1.6 1997/03/08 23:26:54 steve Exp $ |
3 | 3 |
4 ;; Copyright (C) 1993, 1994, 1995, 1996 Lennart Staflin | 4 ;; Copyright (C) 1993, 1994, 1995, 1996 Lennart Staflin |
5 ;; Copyright (C) 1992 Free Software Foundation, Inc. | 5 ;; Copyright (C) 1992 Free Software Foundation, Inc. |
6 | 6 |
7 ;; Author: Lennart Staflin <lenst@lysator.liu.se> | 7 ;; Author: Lennart Staflin <lenst@lysator.liu.se> |
408 (\"New page\" \"<?NewPage>\")) | 408 (\"New page\" \"<?NewPage>\")) |
409 ") | 409 ") |
410 | 410 |
411 (defvar sgml-custom-dtd nil | 411 (defvar sgml-custom-dtd nil |
412 "Menu entries to be added to the DTD menu. | 412 "Menu entries to be added to the DTD menu. |
413 The value should be a list of entrys to be added to the DTD menu. | 413 The value should be a list of entries to be added to the DTD menu. |
414 Every entry should be a list. The first element of the entry is a string | 414 Every entry should be a list. The first element of the entry is a string |
415 used as the menu entry. The second element is a string containing a | 415 used as the menu entry. The second element is a string containing a |
416 doctype declaration (this can be nil if no doctype). The rest of the | 416 doctype declaration (this can be nil if no doctype). The rest of the |
417 list should be a list of variables and values. For backward | 417 list should be a list of variables and values. For backward |
418 compatibility a singel string instead of a variable is assigned to | 418 compatibility a singel string instead of a variable is assigned to |
989 | 989 |
990 To tag a region with the mouse, use transient mark mode or secondary selection. | 990 To tag a region with the mouse, use transient mark mode or secondary selection. |
991 | 991 |
992 Structure editing: | 992 Structure editing: |
993 \\[sgml-backward-element] Moves backwards over the previous element. | 993 \\[sgml-backward-element] Moves backwards over the previous element. |
994 \\[sgml-forward-element] Moves forward over the nex element. | 994 \\[sgml-forward-element] Moves forward over the next element. |
995 \\[sgml-down-element] Move forward and down one level in the element structure. | 995 \\[sgml-down-element] Move forward and down one level in the element structure. |
996 \\[sgml-backward-up-element] Move backward out of this element level. | 996 \\[sgml-backward-up-element] Move backward out of this element level. |
997 \\[sgml-beginning-of-element] Move to after the start tag of the current element. | 997 \\[sgml-beginning-of-element] Move to after the start tag of the current element. |
998 \\[sgml-end-of-element] Move to before the end tag of the current element. | 998 \\[sgml-end-of-element] Move to before the end tag of the current element. |
999 \\[sgml-kill-element] Kill the element following the cursor. | 999 \\[sgml-kill-element] Kill the element following the cursor. |
1033 from end of element when adding end tag. | 1033 from end of element when adding end tag. |
1034 sgml-indent-step How much to increament indent for every element level. | 1034 sgml-indent-step How much to increament indent for every element level. |
1035 sgml-indent-data If non-nil, indent in data/mixed context also. | 1035 sgml-indent-data If non-nil, indent in data/mixed context also. |
1036 sgml-set-face If non-nil, psgml will set the face of parsed markup. | 1036 sgml-set-face If non-nil, psgml will set the face of parsed markup. |
1037 sgml-markup-faces The faces used when the above variable is non-nil. | 1037 sgml-markup-faces The faces used when the above variable is non-nil. |
1038 sgml-system-path List of directorys used to look for system identifiers. | 1038 sgml-system-path List of directories used to look for system identifiers. |
1039 sgml-public-map Mapping from public identifiers to file names. | 1039 sgml-public-map Mapping from public identifiers to file names. |
1040 sgml-offer-save If non-nil, ask about saving modified buffers before | 1040 sgml-offer-save If non-nil, ask about saving modified buffers before |
1041 \\[sgml-validate] is run. | 1041 \\[sgml-validate] is run. |
1042 | 1042 |
1043 All bindings: | 1043 All bindings: |