Mercurial > emacs
annotate etc/schema/xhtml-ruby.rnc @ 112169:882d6cbb91a2
Tweaks to tool-bar for default, VC-dir, Compile, and Info.
* tool-bar.el (tool-bar-setup): Remove Help button. Remove label
from Search and add a label to Undo.
* vc/vc-dir.el (vc-dir-tool-bar-map): Rearrange, removing
inappropriate buttons and adding :vert-only tags.
* progmodes/compile.el (compilation-mode-tool-bar-map): Adjust to
removal of Help tool-bar button. Remove Undo button for space.
* info.el (info-tool-bar-map): Add :vert-only tags.
author | Chong Yidong <cyd@stupidchicken.com> |
---|---|
date | Sat, 08 Jan 2011 23:13:47 -0500 |
parents | 38f93f3d00a2 |
children |
rev | line source |
---|---|
86361 | 1 ruby = |
2 element ruby { | |
3 ruby.attlist, | |
4 ((rb, | |
5 (rt | (rp, rt, rp))) | |
6 | (rbc, rtc, rtc?)) | |
7 } | |
8 ruby.attlist = Common.attrib | |
9 rbc = element rbc { rbc.attlist, rb+ } | |
10 rbc.attlist = Common.attrib | |
11 rtc = element rtc { rtc.attlist, rt+ } | |
12 rtc.attlist = Common.attrib | |
13 rb = element rb { rb.attlist, Inline.model } | |
14 rb.attlist = Common.attrib | |
15 rt = element rt { rt.attlist, Inline.model } | |
16 rt.attlist = | |
17 Common.attrib, | |
18 attribute rt { Number.datatype }? | |
19 rp = element rp { rp.attlist, text } | |
20 rp.attlist = Common.attrib | |
21 Inline.class |= ruby |