annotate lisp/hyperbole/auto-autoloads.el @ 169:15872534500d r20-3b11

Import from CVS: tag r20-3b11
author cvs
date Mon, 13 Aug 2007 09:46:53 +0200
parents 0132846995bd
children e121b013d1f0
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
1 ;;; DO NOT MODIFY THIS FILE
169
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
2 (if (not (featurep '-autoloads))
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
3 (progn
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
4
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
5 ;;;### (autoloads (hmail:compose) "hmail" "hyperbole/hmail.el")
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
6
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
7 (autoload 'hmail:compose "hmail" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
8 Compose mail with ADDRESS and evaluation of EXPR.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
9 Optional SUBJECT and HELP message may also be given." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
10
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
11 ;;;***
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
12
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
13 ;;;### (autoloads (Info-handle-in-note smart-info-assist smart-info) "hmous-info" "hyperbole/hmous-info.el")
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
14
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
15 (autoload 'smart-info "hmous-info" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
16 Walks through Info documentation networks using one key or mouse key.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
17
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
18 If key is pressed within:
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
19 (1) the first line of an Info Menu Entry or Cross Reference, the desired node
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
20 is found;
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
21 (2) the Up, Next, or Previous entries of a Node Header (first line),
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
22 the desired node is found;
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
23 (3) the File entry of a Node Header (first line),
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
24 the 'Top' node within that file is found;
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
25 (4) at the end of the current node, the Next node is found (this will
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
26 descend subtrees if the function 'Info-global-next' is bound);
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
27 (5) anywhere else (e.g. at the end of a line), the current node entry is
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
28 scrolled up one windowful.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
29
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
30 Returns t if key is pressed within an Info Node Header, Cross Reference,
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
31 or a Menu; otherwise returns nil." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
32
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
33 (autoload 'smart-info-assist "hmous-info" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
34 Walks through Info documentation networks using one assist-key or mouse assist-key.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
35
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
36 If assist-key is pressed within:
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
37 (1) the first line of an Info Menu Entry or Cross Reference, the desired node
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
38 is found;
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
39 (2) the Up, Next, or Previous entries of a Node Header (first line),
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
40 the last node in the history list is found;
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
41 (3) the File entry of a Node Header (first line),
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
42 the 'DIR' root-level node is found;
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
43 (4) at the end of the current node, the Previous node is found (this will
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
44 return from subtrees if the function 'Info-global-prev is bound);
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
45 (5) anywhere else (e.g. at the end of a line), the current node entry is
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
46 scrolled down one windowful.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
47
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
48 Returns t if assist-key is pressed within an Info Node Header, Cross Reference,
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
49 or a Menu; otherwise returns nil." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
50
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
51 (autoload 'Info-handle-in-note "hmous-info" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
52 Follows an Info cross-reference.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
53 If point is within the first line of an Info note (cross-reference), follows
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
54 cross-reference and returns t; otherwise returns nil." nil nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
55
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
56 ;;;***
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
57
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
58 ;;;### (autoloads (hkey-help-show) "hmouse-drv" "hyperbole/hmouse-drv.el")
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
59
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
60 (autoload 'hkey-help-show "hmouse-drv" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
61 Saves prior frame configuration if BUFFER displays help. Displays BUFFER.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
62
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
63 Optional second arg CURRENT-WINDOW non-nil forces display of buffer within
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
64 the current window. By default, it is displayed in another window." nil nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
65
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
66 ;;;***
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
67
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
68 ;;;### (autoloads (smart-tags-file smart-tags-file-path smart-objc smart-lisp-mode-p smart-java-at-tag-p smart-java smart-fortran-at-tag-p smart-c++ smart-c-at-tag-p smart-asm-at-tag-p) "hmouse-tag" "hyperbole/hmouse-tag.el")
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
69
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
70 (autoload 'smart-asm-at-tag-p "hmouse-tag" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
71 Return assembly tag name that point is within, else nil." nil nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
72
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
73 (autoload 'smart-c-at-tag-p "hmouse-tag" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
74 Return C tag name that point is within, else nil." nil nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
75
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
76 (autoload 'smart-c++ "hmouse-tag" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
77 Jumps to the definition of optional C++ IDENTIFIER or the one at point.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
78 Optional second arg NEXT means jump to next matching C++ tag.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
79
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
80 It assumes that its caller has already checked that the key was pressed in an
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
81 appropriate buffer and has moved the cursor to the selected buffer.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
82
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
83 If:
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
84 (1) on a `#include' statement, the include file is displayed;
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
85 Look for include file in directory lists `smart-c-cpp-include-dirs'
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
86 and `smart-c-include-dirs'.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
87 (2) on a C++ identifier, the identifier definition is displayed,
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
88 assuming the identifier is found within an `etags' generated tag file
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
89 in the current directory or any of its ancestor directories.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
90 (3) if `smart-c-use-lib-man' is non-nil, the C++ identifier is
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
91 recognized as a library symbol, and a man page is found for the
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
92 identifier, then the man page is displayed." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
93
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
94 (autoload 'smart-fortran-at-tag-p "hmouse-tag" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
95 Return Fortran tag name that point is within, else nil." nil nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
96
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
97 (autoload 'smart-java "hmouse-tag" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
98 Jumps to the definition of optional Java IDENTIFIER or the one at point.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
99 Optional second arg NEXT means jump to next matching Java tag.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
100
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
101 It assumes that its caller has already checked that the key was pressed in an
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
102 appropriate buffer and has moved the cursor to the selected buffer.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
103
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
104 If:
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
105 (1) within a commented @see cross-reference, the referent is displayed;
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
106 (2) on a `package' or `import' statement, the referent is displayed;
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
107 Look for referent files in the directory list `smart-java-package-dirs'.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
108 (3) on an Java identifier, the identifier definition is displayed,
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
109 assuming the identifier is found within an `etags' generated tag file
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
110 in the current directory or any of its ancestor directories." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
111
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
112 (autoload 'smart-java-at-tag-p "hmouse-tag" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
113 Return Java tag name that point is within, else nil." nil nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
114
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
115 (autoload 'smart-lisp-mode-p "hmouse-tag" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
116 Return t if in a mode which uses Lisp symbols." nil nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
117
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
118 (autoload 'smart-objc "hmouse-tag" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
119 Jumps to the definition of optional Objective-C IDENTIFIER or the one at point.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
120 Optional second arg NEXT means jump to next matching Objective-C tag.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
121
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
122 It assumes that its caller has already checked that the key was pressed in an
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
123 appropriate buffer and has moved the cursor to the selected buffer.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
124
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
125 If:
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
126 (1) on a `#include' statement, the include file is displayed;
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
127 Look for include file in directory lists `smart-c-cpp-include-dirs'
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
128 and `smart-c-include-dirs'.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
129 (2) on an Objective-C identifier, the identifier definition is displayed,
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
130 assuming the identifier is found within an `etags' generated tag file
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
131 in the current directory or any of its ancestor directories.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
132 (3) if `smart-c-use-lib-man' is non-nil, the Objective-C identifier is
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
133 recognized as a library symbol, and a man page is found for the
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
134 identifier, then the man page is displayed." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
135
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
136 (autoload 'smart-tags-file-path "hmouse-tag" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
137 Expand relative FILE name by looking it up in the nearest tags file.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
138 Return FILE unchanged if it exists relative to the current directory or
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
139 cannot be expanded via a tags file." nil nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
140
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
141 (autoload 'smart-tags-file "hmouse-tag" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
142 Return appropriate tags file name for CURR-FILENAME or `tags-file-name'.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
143 Optional NAME-OF-TAGS-FILE is the literal filename for which to look." nil nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
144
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
145 ;;;***
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
146
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
147 ;;;### (autoloads (hyperbole) "hui-mini" "hyperbole/hui-mini.el")
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
148
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
149 (autoload 'hyperbole "hui-mini" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
150 Invokes default Hyperbole menu user interface when not already active.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
151 Suitable for binding to a key, e.g. {C-h h}.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
152 Non-interactively, returns t if menu is actually invoked by call, else nil.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
153
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
154 Two optional arguments may be given to invoke alternative menus.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
155 MENU (a symbol) specifies the menu to invoke from MENU-LIST, (a
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
156 Hyperbole menu list structure). MENU defaults to 'hyperbole and MENU-LIST
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
157 to `hui:menus'. See `hui:menus' definition for the format of the menu list
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
158 structure." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
159
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
160 ;;;***
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
161
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
162 ;;;### (autoloads (var:append) "hvar" "hyperbole/hvar.el")
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
164 (autoload 'var:append "hvar" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
165 Appends to value held by VAR-SYMBOL-NAME, LIST-TO-ADD. Returns new value.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
166 If VAR-SYMBOL-NAME is unbound, it is set to LIST-TO-ADD.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
167 Often used to append to 'hook' variables." nil nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
168
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
169 ;;;***
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
170
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
171 ;;;### (autoloads (hypb:display-file-with-logo hypb:configuration) "hypb" "hyperbole/hypb.el")
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
172
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
173 (autoload 'hypb:configuration "hypb" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
174 Insert Emacs configuration information at the end of optional OUT-BUF or the current buffer." nil nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
175
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
176 (autoload 'hypb:display-file-with-logo "hypb" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
177 Display an optional text FILE with the InfoDock Associates logo prepended.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
178 Without file, logo is prepended to the current buffer." nil nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
179
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
180 ;;;***
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
181
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
182 ;;;### (autoloads nil "hyperbole" "hyperbole/hyperbole.el")
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
183
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
184 (defvar action-key-url-function 'w3-fetch "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
185 Value is a function of one argument, a url, which displays the url referent.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
186 Possible values are:
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
187 w3-fetch - display using the W3 Emacs web browser;
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
188 highlight-headers-follow-url-netscape - display in Netscape;
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
189 highlight-headers-follow-url-mosaic - display in Mosaic.")
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
190
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
191 (defvar kimport:mode-alist '((t . kimport:text) (outline-mode . kimport:star-outline)) "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
192 Alist of (major-mode . importation-function) elements.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
193 This determines the type of importation done on a file when `kimport:file' is
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
194 called if the major mode of the import file matches the car of an element in
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
195 this list. If there is no match, then `kimport:suffix-alist' is checked. If
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
196 that yields no match, the element in this list whose car is 't is used. It
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
197 normally does an import of a koutline or text file.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
198
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
199 Each importation-function must take two arguments, a buffer/file to import
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
200 and a buffer/file into which to insert the imported elements and a third
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
201 optional argument, CHILDREN-P, which when non-nil means insert imported cells
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
202 as the initial set of children of the current cell, if any.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
203
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
204 outline-mode - imported as an Emacs outline whose entries begin with
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
205 asterisks;
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
206 .kot
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
207 .kotl - imported as a structured koutline
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
208
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
209 all others - imported as text.")
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
210
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
211 (defvar kimport:suffix-alist '(("\\.otl$" . kimport:star-outline) ("\\.aug$" . kimport:aug-post-outline)) "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
212 Alist of (buffer-name-suffix-regexp . importation-function) elements.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
213 This determines the type of importation done on a file when `kimport:file' is
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
214 called. Each importation-function must take two arguments, a buffer/file to
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
215 import and a buffer/file into which to insert the imported elements and a
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
216 third optional argument, CHILDREN-P, which when non-nil means insert imported
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
217 cells as the initial set of children of the current cell, if any.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
218
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
219 .otl - imported as an Emacs outline whose entries begin with asterisks;
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
220 .kot
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
221 .kotl - imported as a structured koutline
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
222 .aug - imported as an Augment post-numbered outline.")
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
223
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
224 ;;;***
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
225
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
226 ;;;### (autoloads (wconfig-yank-pop wconfig-ring-save wconfig-delete-pop wconfig-restore-by-name wconfig-delete-by-name wconfig-add-by-name) "wconfig" "hyperbole/wconfig.el")
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
227
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
228 (autoload 'wconfig-add-by-name "wconfig" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
229 Saves the current window configuration under the string NAME.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
230 When called interactively and a window configuration already exists under
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
231 NAME, confirms whether or not to replace it." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
232
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
233 (autoload 'wconfig-delete-by-name "wconfig" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
234 Deletes window configuration saved under NAME." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
235
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
236 (autoload 'wconfig-restore-by-name "wconfig" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
237 Restores window configuration saved under NAME." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
238
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
239 (autoload 'wconfig-delete-pop "wconfig" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
240 Replaces current window config with most recently saved config in ring.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
241 Then deletes this new configuration from the ring." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
242
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
243 (autoload 'wconfig-ring-save "wconfig" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
244 Saves the current window configuration onto the save ring.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
245 Use {\\[wconfig-yank-pop]} to restore it at a later time." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
246
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
247 (autoload 'wconfig-yank-pop "wconfig" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
248 Replaces current window config with prefix arg Nth prior one in save ring.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
249 Interactively, default value of N = 1, meaning the last saved window
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
250 configuration is displayed.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
251
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
252 The sequence of window configurations wraps around, so that after the oldest
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
253 one comes the newest one." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
254
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
255 ;;;***
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
256
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
257 ;;;### (autoloads (rolo-logic) "wrolo-logic" "hyperbole/wrolo-logic.el")
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
258
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
259 (autoload 'rolo-logic "wrolo-logic" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
260 Apply FUNC to all entries in optional IN-BUFS, display entries where FUNC is non-nil.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
261 If IN-BUFS is nil, 'rolo-file-list' is used. If optional COUNT-ONLY is
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
262 non-nil, don't display entries, return count of matching entries only. If
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
263 optional INCLUDE-SUB-ENTRIES flag is non-nil, FUNC will be applied across all
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
264 sub-entries at once. Default is to apply FUNC to each entry and sub-entry
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
265 separately. Entries are displayed with all of their sub-entries unless
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
266 INCLUDE-SUB-ENTRIES is nil and optional NO-SUB-ENTRIES-OUT flag is non-nil.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
267 FUNC should use the free variables 'start' and 'end' which contain the limits
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
268 of the region on which it should operate. Returns number of applications of
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
269 FUNC that return non-nil." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
270
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
271 ;;;***
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
272
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
273 ;;;### (autoloads (rolo-yank rolo-toggle-datestamps rolo-sort rolo-kill rolo-grep rolo-fgrep rolo-edit rolo-display-matches rolo-add) "wrolo" "hyperbole/wrolo.el")
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
274
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
275 (autoload 'rolo-add "wrolo" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
276 Adds a new entry in personal rolodex for NAME.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
277 Last name first is best, e.g. \"Smith, John\".
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
278 With prefix argument, prompts for optional FILE to add entry within.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
279 NAME may be of the form: parent/child to insert child below a parent
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
280 entry which begins with the parent string." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
281
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
282 (autoload 'rolo-display-matches "wrolo" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
283 Display optional DISPLAY-BUF buffer of previously found rolodex matches.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
284 If DISPLAY-BUF is nil, use the value in `rolo-display-buffer'.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
285 Second arg RETURN-TO-BUFFER is the buffer to leave point within after the display." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
286
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
287 (autoload 'rolo-edit "wrolo" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
288 Edits a rolodex entry given by optional NAME within `rolo-file-list'.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
289 With prefix argument, prompts for optional FILE to locate entry within.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
290 With no NAME arg, simply displays FILE or first entry in `rolo-file-list' in an
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
291 editable mode. NAME may be of the form: parent/child to edit child below a
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
292 parent entry which begins with the parent string." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
293
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
294 (autoload 'rolo-fgrep "wrolo" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
295 Display rolodex entries matching STRING.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
296 To a maximum of optional prefix arg MAX-MATCHES, in file(s) from optional
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
297 ROLO-FILE or rolo-file-list. Default is to find all matching entries. Each
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
298 entry is displayed with all of its sub-entries. Optional COUNT-ONLY non-nil
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
299 means don't retrieve and don't display matching entries. Optional NO-DISPLAY
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
300 non-nil means retrieve entries but don't display.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
301
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
302 Nil value of MAX-MATCHES means find all matches, t value means find all matches
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
303 but omit file headers, negative values mean find up to the inverse of that
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
304 number of entries and omit file headers.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
305
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
306 Returns number of entries matched. See also documentation for the variable
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
307 rolo-file-list." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
308
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
309 (autoload 'rolo-grep "wrolo" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
310 Display rolodex entries matching REGEXP.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
311 To a maximum of prefix arg MAX-MATCHES, in buffer(s) from optional ROLO-BUFS or
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
312 rolo-file-list. Default is to find all matching entries. Each entry is
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
313 displayed with all of its sub-entries. Optional COUNT-ONLY non-nil means don't
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
314 retrieve and don't display matching entries. Optional NO-DISPLAY non-nil
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
315 means retrieve entries but don't display.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
316
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
317 Nil value of MAX-MATCHES means find all matches, t value means find all matches
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
318 but omit file headers, negative values mean find up to the inverse of that
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
319 number of entries and omit file headers.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
320
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
321 Returns number of entries matched. See also documentation for the variable
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
322 rolo-file-list." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
323
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
324 (autoload 'rolo-kill "wrolo" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
325 Kills a rolodex entry given by NAME within `rolo-file-list'.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
326 With prefix argument, prompts for optional FILE to locate entry within.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
327 NAME may be of the form: parent/child to kill child below a parent entry
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
328 which begins with the parent string.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
329 Returns t if entry is killed, nil otherwise." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
330
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
331 (autoload 'rolo-sort "wrolo" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
332 Sorts up to 14 levels of entries in ROLO-FILE (default is personal rolo).
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
333 Assumes entries are delimited by one or more `*'characters.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
334 Returns list of number of groupings at each entry level." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
335
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
336 (autoload 'rolo-toggle-datestamps "wrolo" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
337 Toggle whether datestamps are updated when rolodex entries are modified.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
338 With optional ARG, turn them on iff ARG is positive." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
339
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
340 (autoload 'rolo-yank "wrolo" "\
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
341 Inserts at point the first rolodex entry matching NAME.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
342 With optional prefix arg, REGEXP-P, treats NAME as a regular expression instead
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
343 of a string." t nil)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
344
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
345 ;;;***
169
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
346
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
347 ;;;### (autoloads (kfile:is-p kfile:view kfile:find) "kfile" "kotl/kfile.el")
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
348
169
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
349 (autoload 'kfile:find "kfile" "\
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
350 Find a file FILE-NAME containing a kotl or create one if none exists.
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
351 Return the new kview." t nil)
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
352
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
353 (autoload 'kfile:view "kfile" "\
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
354 View an existing kotl version-2 file FILE-NAME in a read-only mode." t nil)
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
355
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
356 (autoload 'kfile:is-p "kfile" "\
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
357 Iff current buffer contains an unformatted or formatted koutline, return file format version string, else nil." nil nil)
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
358
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
359 ;;;***
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
360
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
361 ;;;### (autoloads (kimport:text kimport:star-outline kimport:aug-post-outline kimport:file) "kimport" "kotl/kimport.el")
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
362
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
363 (autoload 'kimport:file "kimport" "\
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
364 Import a buffer or file IMPORT-FROM into the koutline in buffer or file OUTPUT-TO.
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
365
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
366 Any suffix in IMPORT-FROM's buffer name is used to determine the type of
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
367 importation. All others are imported as text, one paragraph per cell.
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
368
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
369 See the documentation for the variable, `kimport:suffix-alist' for
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
370 information on specific importation formats." t nil)
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
371
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
372 (autoload 'kimport:aug-post-outline "kimport" "\
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
373 Insert Augment outline statements from IMPORT-FROM into koutline OUTPUT-TO.
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
374 Displays and leaves point in OUTPUT-TO. See documentation for
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
375 `kimport:initialize' for valid values of IMPORT-FROM and OUTPUT-TO and for
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
376 an explanation of where imported cells are placed.
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
377
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
378 If OUTPUT-TO is a new koutline, the first statement inserted will be the
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
379 first cell. Otherwise, it will be the successor of the current cell.
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
380
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
381 Each statement to be imported is delimited by an Augment relative id at the
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
382 end of the statement. \"1\" = level 1, \"1a\" = level 2 in outline and so
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
383 on." t nil)
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
384
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
385 (autoload 'kimport:star-outline "kimport" "\
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
386 Insert star outline nodes from IMPORT-FROM into koutline OUTPUT-TO.
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
387 Displays and leaves point in OUTPUT-TO. See documentation for
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
388 `kimport:initialize' for valid values of IMPORT-FROM and OUTPUT-TO and for
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
389 an explanation of where imported cells are placed.
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
390
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
391 \"* \" = level 1, \"** \" = level 2 in outline and so on." t nil)
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
392
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
393 (autoload 'kimport:text "kimport" "\
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
394 Insert text paragraphs from IMPORT-FROM into koutline OUTPUT-TO.
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
395 Displays and leaves point in OUTPUT-TO. See documentation for
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
396 `kimport:initialize' for valid values of IMPORT-FROM and OUTPUT-TO and for
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
397 an explanation of where imported cells are placed.
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
398
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
399 Text paragraphs are imported as a sequence of same level cells. Koutlines
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
400 are imported with their structure intact.
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
401
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
402 The variable, `paragraph-start,' is used to determine paragraphs." t nil)
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
403
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
404 ;;;***
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
405
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
406 ;;;### (autoloads (klink:create) "klink" "kotl/klink.el")
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
407
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
408 (autoload 'klink:create "klink" "\
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
409 Insert at point an implicit link to REFERENCE.
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
410 REFERENCE should be a cell-ref or a string containing \"filename, cell-ref\".
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
411 See documentation for `kcell:ref-to-id' for valid cell-ref formats." t nil)
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
412
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
413 ;;;***
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
414
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
415 ;;;### (autoloads (kotl-mode) "kotl-mode" "kotl/kotl-mode.el")
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
416
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
417 (autoload 'kotl-mode "kotl-mode" "\
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
418 The major mode used to edit and view koutlines.
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
419 It provides the following keys:
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
420 \\{kotl-mode-map}" t nil)
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
421
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
422 ;;;***
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
423
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 163
diff changeset
424 (provide '-autoloads)
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents:
diff changeset
425 ))