Mercurial > emacs
annotate etc/schema/xhtml-frames.rnc @ 93937:dfe13eac745b
* minibuffer.el (minibuffer): Move group from cus-edit.el.
(completion-auto-help): Move from C code.
(minibuffer--maybe-completion-help): Remove.
(minibuffer--bitset): New function.
(minibuffer--do-completion): Rename from minibuffer-do-completion.
Renumber a bit. Really complete on string *before* point.
Add argument used for word-completion.
Join trailing / in completion with following text, as done in
minibuffer-complete-word.
Handle new value `lazy' for completion-auto-help.
(minibuffer-try-word-completion): New function extracted from
minibuffer-complete-word.
(minibuffer-complete-word): Use minibuffer--do-completion.
(minibuffer--insert-strings): Rename from
minibuffer-complete-insert-strings.
(exit-minibuffer): Fix typo.
* cus-edit.el (minibuffer): Move group to minibuffer.el.
* cus-start.el: Remove completion-auto-help.
* minibuf.c (Vcompletion_auto_help): Move to minibuffer.el.
(syms_of_minibuf): Remove its initialization.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Wed, 09 Apr 2008 19:33:56 +0000 |
parents | 38f93f3d00a2 |
children |
rev | line source |
---|---|
86361 | 1 # Frames Module |
2 | |
3 include "xhtml-struct.rnc" { | |
4 html = element html { html.attlist, head, frameset } | |
5 } | |
6 frameset = | |
7 element frameset { | |
8 frameset.attlist, | |
9 ((frameset | frame)+ & noframes?) | |
10 } | |
11 frameset.attlist = | |
12 Core.attrib, | |
13 attribute cols { MultiLength.datatype }?, | |
14 attribute rows { MultiLength.datatype }? | |
15 frame = element frame { frame.attlist } | |
16 frame.attlist = | |
17 Core.attrib, | |
18 attribute longdesc { URI.datatype }?, | |
19 attribute src { URI.datatype }?, | |
20 attribute frameborder { "1" | "0" }?, | |
21 attribute marginwidth { Pixels.datatype }?, | |
22 attribute marginheight { Pixels.datatype }?, | |
23 attribute noresize { "noresize" }?, | |
24 attribute scrolling { "yes" | "no" | "auto" }? | |
25 noframes = element noframes { noframes.attlist, body } | |
26 noframes.attlist = Common.attrib |