annotate etc/schema/xhtml-attribs.rnc @ 108220:0b37f86b040e
Use define-minor-mode where applicable.
* mh-show.el (mh-showing-mode): Move function to mh-e.el.
* mh-e.el (mh-showing-mode):
* url-dired.el (url-dired-minor-mode):
* org-table.el (orgtbl-mode):
* view.el (view-mode):
* type-break.el (type-break-query-mode)
(type-break-mode-line-message-mode):
* textmodes/reftex.el (reftex-mode):
* term/vt100.el (vt100-wide-mode):
* tar-mode.el (tar-subfile-mode):
* savehist.el (savehist-mode):
* ibuf-ext.el (ibuffer-auto-mode):
* composite.el (auto-composition-mode):
* progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
Use define-minor-mode.
(vhdl-mode): Use static mode-line format.
(vhdl-mode-line-update): Delete.
(vhdl-create-mode-menu, vhdl-activate-customizations)
(vhdl-hs-minor-mode): Don't bother calling it.
author |
Stefan Monnier <monnier@iro.umontreal.ca> |
date |
Sun, 02 May 2010 22:29:46 -0400 |
parents |
38f93f3d00a2 |
children |
|
rev |
line source |
86361
|
1 # Common Attributes Module
|
|
2
|
|
3 id.attrib = attribute id { ID.datatype }?
|
|
4 class.attrib = attribute class { NMTOKENS.datatype }?
|
|
5 title.attrib = attribute title { Text.datatype }?
|
|
6 Core.attrib = id.attrib, class.attrib, title.attrib
|
|
7 lang.attrib = attribute xml:lang { LanguageCode.datatype }?
|
|
8 I18n.attrib = lang.attrib
|
|
9 Common.attrib = Core.attrib, I18n.attrib
|
|
10 CommonIdRequired.attrib =
|
|
11 attribute id { ID.datatype },
|
|
12 class.attrib,
|
|
13 title.attrib,
|
|
14 I18n.attrib
|