]> git.donarmstrong.com Git - lib.git/blob - emacs_el/tiny-tools/tiny/tiny-autoload-loaddefs-tiny.el
add tiny-tools
[lib.git] / emacs_el / tiny-tools / tiny / tiny-autoload-loaddefs-tiny.el
1 ;;; tiny-autoload-loaddefs-tiny.el -- loaddef definitions of program files
2 ;;  Generate date: 2002-01-02
3 ;;  This file is automatically generated. Do not Change.
4
5 (provide 'tiny-autoload-loaddefs-tiny)
6
7 \f
8 ;;;### (autoloads (tiny-setup-autoload-read tiny-setup-display tiny-setup-all
9 ;;;;;;  tiny-setup) "tiny-setup" "tiny-setup.el" (15411 19366))
10 ;;; Generated autoloads from tiny-setup.el
11
12 (autoload (quote tiny-setup) "tiny-setup" "\
13 Tiny Tools initial setup controller. See Message buffer for results.
14
15 Please make sure you have run the makefile.pl with build option
16 \"all\" or \"autoload\". You can verify this by finding files which
17 contain word \"loaddefs\".
18
19 Autoload statements are always defined when this function is called,
20 so even if you do not define any options to be installed, they will be
21 available in callable functions that trigger loading packages. This
22 means, that you an call e.g function \\[tinytab-mode] and the call
23 will trigger loading package tinytab.el
24
25 Please notice, that this central setup function configures only the
26 essential packages, even with TYPE and FEATURE-LIST. The listing
27 \\[tiny-setup-display] lists many packages that are not loaded
28 or set up in any default way because a) package's scope is very narrow
29 and it may not interest the majority b) there is no sensible autoload
30 and it requires manual settings: tinyload.el and tinypath.el are
31 good example of this. c) package is a library and it has been
32 taken cared of by other means.
33
34 Remember that all functions are autoloaded and accessible, although
35 packages marked <no options> may not have default configurations. Here is
36 sample listing that you may expect from \\[tiny-setup-display] which
37 displays then content of `tiny-setup-:option-table' when no tiny-setup
38 configure options are not defined and you should load the package as
39 instructed in the file itself:
40
41     ..
42     tinychist            <no options defined to install>
43     ...
44                          Command history save/restore utility.
45     tinyload             <no options defined to install>
46                          Load set of packages when Emacs is idle (lazy load).
47     tinylock             <no options defined to install>
48                          Simple emacs locking utility.
49     ...
50     tinynbr              <no options defined to install>
51                          Number conversion minor mode oct/bin/hex.
52     ...
53     tinypath             <no options defined to install>
54                          Manage Emacs startup dynamically.
55
56 Here is one way to install packages: a) configure paths automatically b)
57 load default setup and enable some extra features c) define
58 delayed loading for some packages that you use most of the time.
59
60    (load \"/ABSOLUTE-PATH/tinypath.el\")
61
62    ;;  Define \"ready to use packages\"
63
64    (require 'tiny-setup)
65
66    (tinypath-setup
67      'all             ;; Activate default features safely
68     '(tinyeat--bind   ;; plus features that you want
69       tinydesk--bind
70       tinydiff--bind
71       tinydired--autoload
72       tinyeat--bindforce
73       ..))
74
75    ;; Delayed loading of these packages, when Emacs goes idle.
76
77    (setq tinyload-:load-list
78      '(\"tinyadvice\"           ;; NOTE: for Emacs only.
79        \"tinymy\"
80        \"tinymail\"
81        \"tinygnus\"
82        \"tinyigrep\"
83       ..))
84
85   (require 'tinyload)
86
87 Here is yet another example. The `tiny-setup' function can configure
88 only the very basic features, so some defaults for packages
89 has been changed before they are loaded (look into each file
90 for interesting things that you may find).
91
92     ;; First, configure some package MANUALLY
93
94     (ti::add-hooks 'tinytf-:mode-define-keys-hook
95                    '(tinytf-mode-define-keys tinytf-mode-define-f-keys))
96
97     (setq tinymy-:define-key-force t)
98     (setq tinyef-:mode-key \"\\C-cmr\")
99
100     (setq tinylock-:auto-lock-interval1 45)     ;in minutes
101
102     (setq tinyef-:mode-key-table
103           '(
104             (?[   . step-delete-back)           ;KEY -- action symbol
105             (?]   . step-delete-fwd)
106             (?*   . chunk-delete)
107             (?;   . move-back)
108             (?'   . move-fwd)
109             (?~   . e-tilde)
110             (?/   . e-slash)
111             (?$   . e-dollar)))
112
113     ;; After that, let the contral configure tool do the rest
114
115     (require 'tiny-setup)
116
117     (tiny-setup
118      'all
119      '(tinymy--bind-bindextra
120        tinytab--bindforce-bindextra
121        tinysearch--bindmousemeta
122        tinyreplace--bindemacs
123        tinyeat--bindforce))
124
125 The major TYPE of installation can be one of the following:
126
127     'autoload
128
129     Setup packages so that they are loaded when the options are needed,
130     but do not define any key-bindings that already exist. This will
131     bind free keys to trigger loading packages.
132
133     'all
134
135     Configure with all options on. This will affect free key-bindings.
136
137     nil
138
139     Autoload files are loaded (functions are ready for calling), but
140     no defaults are configured unless OPTION-LIST is set.
141
142 Alternatively, you can select from OPTION-LIST what packages and what
143 options inside it will be installed. See list of packages and their
144 options with command \\[tiny-setup-display]
145
146     The syntax for each package is the same and the symbol passed is
147     composed from keywords:
148
149         <package>--   Name of package affected, like `tinyeat--'.
150
151         bind        Bind default keys. This will set package
152                     to autoload state so that when the binding is called,
153                     package gets loaded.
154
155         bindforce   Overwrite any existing binding. This is like bind, but
156                     without a check.
157
158         bindemacs   Bind keys that are known to be occupied in Emacs.
159
160         load        Load package. If you're tempted to use this,
161                     use more efficient method described in tinyload.el.
162                     Packages that have complex setup or which
163                     can't be autoloaded easily are categorized as \"load\".
164
165         autoload    Configure package so, that it will get loaded if option
166                     related to package is needed.
167
168     For example, to enable options in tinyadvice.el and tinyurl.el, you could
169     send option list below. Notice that multiple options for a package
170     are separated by single dashes.
171
172         (require 'tiny-setup)
173         (tinypath-setup 'all '(tinyadvice--load tinyurl--autoload-bind ...))
174                                                 |        |        |
175                                                 |        |        Option 2.
176                                                 |        Option 1.
177                                                 Package." t nil)
178
179 (autoload (quote tiny-setup-all) "tiny-setup" "\
180 Setup all tools with TYPE." t nil)
181
182 (autoload (quote tiny-setup-display) "tiny-setup" "\
183 List all packages and available setup options.
184 With Argument, like, \\[universal-argument], list NO-DESCRIPTIONS." t nil)
185
186 (autoload (quote tiny-setup-autoload-read) "tiny-setup" "\
187 Read all autoloads. Makefile must have been run for this to work.
188 Syntax in Tiny Tools kit bin/ directory: perl makefile.pl autoload." nil nil)
189
190 ;;;***
191 \f
192 ;;;### (autoloads nil "tinyadvice" "tinyadvice.el" (15384 58070))
193 ;;; Generated autoloads from tinyadvice.el
194  (autoload 'tinyadvice-version "tinyadvice" "Display commentary." t)
195
196 ;;;***
197 \f
198 ;;;### (autoloads (tinyappend-yank tinyappend-kill tinyappend-beg
199 ;;;;;;  tinyappend-end) "tinyappend" "tinyappend.el" (15378 27670))
200 ;;; Generated autoloads from tinyappend.el
201  (autoload 'tinyappend-version "tinyappend" "Display commentary." t)
202
203 (autoload (quote tinyappend-end) "tinyappend" "\
204 Store region BEG END with MSG or current line to the end of `tinyappend-:buffer'." t nil)
205
206 (autoload (quote tinyappend-beg) "tinyappend" "\
207 Store BEG END with MSG or current line to the beginning of `tinyappend-:buffer'." t nil)
208
209 (autoload (quote tinyappend-kill) "tinyappend" "\
210 Kill `tinyappend-:buffer' buffer." t nil)
211
212 (autoload (quote tinyappend-yank) "tinyappend" "\
213 Yank `tinyappend-:buffer' to the current position. Optionally KILL `tinyappend-:buffer'." t nil)
214
215 ;;;***
216 \f
217 ;;;### (autoloads (tinybookmark-mouse tinybookmark-keyboard tinybookmark-mouse-parse
218 ;;;;;;  tinybookmark-keyboard-parse tinybookmark-parse tinybookmark-insert
219 ;;;;;;  tinybookmark-repeat tinybookmark-forward tinybookmark-backward)
220 ;;;;;;  "tinybookmark" "tinybookmark.el" (15378 27670))
221 ;;; Generated autoloads from tinybookmark.el
222
223 (autoload (quote tinybookmark-backward) "tinybookmark" "\
224 Search book mark line backward." t nil)
225
226 (autoload (quote tinybookmark-forward) "tinybookmark" "\
227 Search book mark line forward or optionally BACK." t nil)
228
229 (autoload (quote tinybookmark-repeat) "tinybookmark" "\
230 Repeats character or string sequence STR COUNT times.
231
232 COUNT can be:
233
234   0       repeat until position 79 or COL , or if the STR is not single
235           character, until fits below COL
236   \"\"    interactive insert, as long as user presses RET or SPACE.
237
238 STRICT has effect only if COL is given:
239
240   nil     insert as long as STR fits below COL
241   t       insert strictly up till COL and cut away portion
242           of STR if necessary" t nil)
243
244 (autoload (quote tinybookmark-insert) "tinybookmark" "\
245 Add book mark until the end of line.
246 Normally line is filled as long as the pattern fits below max column,
247 but if the optional argument is given, it will be filled in _full_ ,
248 truncating if necessary. To see an example, try with some _long_
249 pattern.
250
251 Input:
252
253   TXT       book mark name
254   SEP       separator string that is repeated.
255   STRICT
256             0       strict is nil in spite of `tinybookmark-:insert-strict'
257             1       strict is t   in spite of `tinybookmark-:insert-strict'
258             nil     use default value in `tinybookmark-:insert-strict'
259
260 References:
261
262         `tinybookmark-:insert-strict'" t nil)
263
264 (autoload (quote tinybookmark-parse) "tinybookmark" "\
265 Builds up book mark list and store it to cache.
266
267 Return:
268
269   t     cache was built.
270   nil   book marks not found or error happened. Cache untouched." t nil)
271
272 (autoload (quote tinybookmark-keyboard-parse) "tinybookmark" "\
273 Reparse book marks." nil nil)
274
275 (autoload (quote tinybookmark-mouse-parse) "tinybookmark" "\
276 Reparse book mark list. This function is called from mouse binding.
277 Called with mouse EVENT. VERB displays message." t nil)
278
279 (autoload (quote tinybookmark-keyboard) "tinybookmark" "\
280 Pass ARG to `tinybookmark-mouse'." t nil)
281
282 (autoload (quote tinybookmark-mouse) "tinybookmark" "\
283 Display book mark pop up menu. Use mouse EVENT.
284 Optional ARG
285   list        \\[universal-argument], reparse list" t nil)
286
287 ;;;***
288 \f
289 ;;;### (autoloads (tinybuffer-next-buffer tinybuffer-previous-buffer
290 ;;;;;;  tinybuffer-iswitch-to-buffer) "tinybuffer" "tinybuffer.el"
291 ;;;;;;  (15378 27670))
292 ;;; Generated autoloads from tinybuffer.el
293  (autoload 'tinybuffer-version "tinybuffer" "Display commentary." t)
294
295 (autoload (quote tinybuffer-iswitch-to-buffer) "tinybuffer" "\
296 Switch to buffer when RETURN/SPACE/TAB pressed.
297 Show buffer at echo area. ESC to cancel prompt.
298
299 Note:
300
301   The startup time of calling this function may be high, because it has
302   to build list of choices and possibly filter out unwanted buffers.
303
304 References:
305
306   `tinybuffer-:iswitch-to-buffer-keys'    keys to scroll buffer list" t nil)
307
308 (autoload (quote tinybuffer-previous-buffer) "tinybuffer" "\
309 Switch to previous buffer in current window." t nil)
310
311 (autoload (quote tinybuffer-next-buffer) "tinybuffer" "\
312 Switch to the other buffer (2nd in list-buffer) in current window." t nil)
313
314 ;;;***
315 \f
316 ;;;### (autoloads (tinycache-flush tinycache-flush-all-compilation
317 ;;;;;;  tinycache-mode tinycache-buffer-list-mark-cache-off tinycache-buffer-list-mark-deleted
318 ;;;;;;  tinycache-buffer-list-unmark tinycache-buffer-list-mark)
319 ;;;;;;  "tinycache" "tinycache.el" (15378 27670))
320 ;;; Generated autoloads from tinycache.el
321  (autoload 'tinycache-version "tinycache" "Display commentary." t)
322
323 (autoload (quote tinycache-buffer-list-mark) "tinycache" "\
324 Mark Cached files in buffer list." t nil)
325
326 (autoload (quote tinycache-buffer-list-unmark) "tinycache" "\
327 Mark Cached files in buffer list." t nil)
328
329 (autoload (quote tinycache-buffer-list-mark-deleted) "tinycache" "\
330 Mark Cached files in buffer list." t nil)
331
332 (autoload (quote tinycache-buffer-list-mark-cache-off) "tinycache" "\
333 Mark files whose cache property has been turned off." t nil)
334
335 (autoload (quote tinycache-mode) "tinycache" "\
336 Toggle cache flag for this buffer with ARG.
337 If the file does not belong to compile cache, calling this function
338 does nothing. If the file is in the cache, the modeline displays mode name.
339
340 Removing the file from cache means that the file is not killed when
341 the cache is flushed with \\[tinycache-flush]." t nil)
342
343 (autoload (quote tinycache-flush-all-compilation) "tinycache" "\
344 Kill all cached files by stepping through all compilation buffers. VERB." t nil)
345
346 (autoload (quote tinycache-flush) "tinycache" "\
347 Kill buffers listed in `tinycache-:cache'. VERB.
348 You must be in the Compilation/Dired buffer to execute this command.
349
350 If you're not in dired buffer, function tries to find compilation
351 buffer and kill compilation cached files." t nil)
352
353 ;;;***
354 \f
355 ;;;### (autoloads nil "tinychist" "tinychist.el" (15407 48240))
356 ;;; Generated autoloads from tinychist.el
357  (autoload 'tinychist-version "tinychist" "Display commentary." t)
358
359 ;;;***
360 \f
361 ;;;### (autoloads (tinycomment-indent-for-comment) "tinycomment"
362 ;;;;;;  "tinycomment.el" (15378 27670))
363 ;;; Generated autoloads from tinycomment.el
364  (autoload 'tinycomment-version "tinycomment" "Display commentary." t)
365
366 (autoload (quote tinycomment-indent-for-comment) "tinycomment" "\
367 Alternative to standard `indent-for-comment'.
368 Relies on file extension
369 and doesn't need specific mode to be turned on. Temporary buffers
370 that has no file name cannot be identified by this function, so
371 it passes control directly to mode. There is a chance you might not
372 even notice that this function is working on the background.
373
374 Verbose warnings are enabled by `tinycomment-:comment-notify'
375 Special cases are handled by tinycomment-:comment-extra* variables
376 Version info is on \\[tinycomment-version]." t nil)
377
378 ;;;***
379 \f
380 ;;;### (autoloads nil "tinycompile" "tinycompile.el" (15378 27670))
381 ;;; Generated autoloads from tinycompile.el
382  (autoload 'tinycompile-version "tinycompile" "Display commentary." t)
383  (autoload 'turn-on-tinycompile-mode    "tinycompile" "" t)
384  (autoload 'turn-off-tinycompile-mode   "tinycompile" "" t)
385  (autoload 'tinycompile-mode            "tinycompile" "" t)
386  (autoload 'tinycompile-commentary        "tinycompile" "" t)
387
388 ;;;***
389 \f
390 ;;;### (autoloads nil "tinydesk" "tinydesk.el" (15411 18780))
391 ;;; Generated autoloads from tinydesk.el
392  (autoload 'tinydesk-version "tinydesk" "Display commentary." t)
393
394 ;;;***
395 \f
396 ;;;### (autoloads (tinydiff-diff tinydiff-diff-show-noask tinydiff-diff-show)
397 ;;;;;;  "tinydiff" "tinydiff.el" (15407 48240))
398 ;;; Generated autoloads from tinydiff.el
399  (autoload 'tinydiff-version "tinydiff" "Display commentary." t)
400  (autoload 'tinydiff-mode                "tinydiff" "" t)
401  (autoload 'turn-on-tinydiff-mode  "tinydiff" "" t)
402  (autoload 'turn-off-tinydiff-mode "tinydiff" "" t)
403  (autoload 'tinydiff-commentary    "tinydiff" "" t)
404  (autoload 'tinydiff-debug-toggle "tinydiff" "" t)
405
406 (autoload (quote tinydiff-diff-show) "tinydiff" "\
407 Generate diff CMD for the buffer and show it in the other window.
408 Lets user to edit option in the command line." t nil)
409
410 (autoload (quote tinydiff-diff-show-noask) "tinydiff" "\
411 Generate diff CMD for the buffer. Guess all parameters." t nil)
412
413 (autoload (quote tinydiff-diff) "tinydiff" "\
414 Run diff on buffer, possibly using rcsdiff if file is version controlled.
415 Inserts contents into register.
416
417 The version control is determined by searching RCS strings 'Id' or 'Log'
418
419 Input:
420
421   CMD           diff command
422   SHOW          show the results
423   NO-ASK        run diff without asking any questions.
424   VERB          enable verbose messages
425
426 References:
427
428   `tinydiff-:extra-diff-program'
429   `tinydiff-:diff-buffer'
430   `tinydiff-:diff-options'
431
432 Return:
433
434  nil            ,the no-ask parameter could not determine right diff.
435  buffer         ,the shell output buffer. Note, that the diff may have
436                  failed, in that case the buffer does not hold valid output." nil nil)
437
438 ;;;***
439 \f
440 ;;;### (autoloads (tinydired-switch-to-some-ange-ftp-buffer tinydired-kill-all-ange-buffers
441 ;;;;;;  tinydired-kill-all-ange-and-dired-buffers tinydired-kill-dired-and-ange-session
442 ;;;;;;  tinydired-load-all-marked-files tinydired-refresh-view tinydired-mark-vc-files-in-Emacs
443 ;;;;;;  tinydired-mark-today-files tinydired-pop-to-buffer tinydired-leave-only-lines
444 ;;;;;;  tinydired-kill-lines tinydired-kill-unmarked-lines tinydired-last-file
445 ;;;;;;  tinydired-first-file tinydired-first-line tinydired-pgdown
446 ;;;;;;  tinydired-pgup tinydired-marks-restore tinydired-marks-save
447 ;;;;;;  tinydired-shorten-links tinydired-lenghten-links tinydired-dired-do-shell-command
448 ;;;;;;  tinydired-one-dir-up tinydired-marked-revert-files tinydired-mark-files-in-Emacs
449 ;;;;;;  tinydired-read-dir-as-is tinydired-ediff tinydired-hook-control)
450 ;;;;;;  "tinydired" "tinydired.el" (15378 27670))
451 ;;; Generated autoloads from tinydired.el
452
453 (autoload (quote tinydired-hook-control) "tinydired" "\
454 Add hooks to dired mode. Optional REMOVE all hooks inserted by package." t nil)
455
456 (autoload (quote tinydired-ediff) "tinydired" "\
457 Compare file at point with file FILE using `ediff'.
458 FILE defaults to the file at the mark.
459 The prompted-for file is the first file given to `ediff'.
460 With prefix arg, prompt for second argument SWITCHES,
461  which is options for `diff'." t nil)
462
463 (autoload (quote tinydired-read-dir-as-is) "tinydired" "\
464 Read the directory without any filtering." t nil)
465
466 (autoload (quote tinydired-mark-files-in-Emacs) "tinydired" "\
467 Mark all files in current directory that are in Emacs." t nil)
468
469 (autoload (quote tinydired-marked-revert-files) "tinydired" "\
470 Revert ie. replace files in Emacs with true copies in directory.
471 If ARG is non-nil, remove any marks if file was loaded.
472
473 Exceptions:
474   Only reload files in Emacs whose modify flag is non-nil.
475   If file does not exist in Emacs, do nothing." t nil)
476
477 (autoload (quote tinydired-one-dir-up) "tinydired" "\
478 Go up one directory." t nil)
479
480 (autoload (quote tinydired-dired-do-shell-command) "tinydired" "\
481 Like `dired-do-shell-command', but run running command in dired ange-ftp.
482 This is not remote shell, but instead it
483 transfers the file to your local system and then executes the dired
484 command on the file.
485
486 Remember: Every time you run this command this files are copied _blindly_
487 to your local directory. No file cache information is kept.
488
489 Input:
490
491   COMMAND
492   ARG
493
494 References:
495
496   `tinydired-:tmp-dir'" t nil)
497
498 (autoload (quote tinydired-lenghten-links) "tinydired" "\
499 Opposite to `tinydired-shorten-links'.
500 This may take a while, because the whole directory structure must
501 be read again." t nil)
502
503 (autoload (quote tinydired-shorten-links) "tinydired" "\
504 Shortens all linked files. The link part is removed." t nil)
505
506 (autoload (quote tinydired-marks-save) "tinydired" "\
507 Save mark list to private storage.
508 Use this function if you know next operation will remove the marks.
509 You can get the marks back with `tinydired-marks-restore'." t nil)
510
511 (autoload (quote tinydired-marks-restore) "tinydired" "\
512 Restore mark list saved by `tinydired-marks-save'." t nil)
513
514 (autoload (quote tinydired-pgup) "tinydired" "\
515 Move cursor to _last_ file in dired mode." t nil)
516
517 (autoload (quote tinydired-pgdown) "tinydired" "\
518 Move cursor up." t nil)
519
520 (autoload (quote tinydired-first-line) "tinydired" "\
521 Move to first _line_ in dired." t nil)
522
523 (autoload (quote tinydired-first-file) "tinydired" "\
524 Move to first file in dired." t nil)
525
526 (autoload (quote tinydired-last-file) "tinydired" "\
527 Move to last file in dired." t nil)
528
529 (autoload (quote tinydired-kill-unmarked-lines) "tinydired" "\
530 Remove unmarked lines. Ignore directories and symlinks." t nil)
531
532 (autoload (quote tinydired-kill-lines) "tinydired" "\
533 Delete lines matching RE." t nil)
534
535 (autoload (quote tinydired-leave-only-lines) "tinydired" "\
536 Leave only lines matching RE. Directory lines are skipped.
537 You can easily undo this with reverting the buffer (dired \"g\")." t nil)
538
539 (autoload (quote tinydired-pop-to-buffer) "tinydired" "\
540 Pop to buffer if it exists in Emacs." t nil)
541
542 (autoload (quote tinydired-mark-today-files) "tinydired" "\
543 Mark all files, not dirs, that are created today.
544 Point sits on first today file. If no today's files are found, point stays
545 on current filename." t nil)
546
547 (autoload (quote tinydired-mark-vc-files-in-Emacs) "tinydired" "\
548 Mark all files in the current _view_ that are in Emacs _and_ in VC control.
549 Optionally UNMARK. VERB." t nil)
550
551 (autoload (quote tinydired-refresh-view) "tinydired" "\
552 Refresh current dired view.
553 If you have used `tinydired-leave-only-lines' and have done some changes to
554 the files. You can use this function to re-read the current view.
555
556 The dired \"g\" will load full view back. This instead caches the
557 current view, executes read, and deletes lines that weren't in the
558 cache --> you get refreshed view. All this may take a while...
559
560 Input:
561
562  VERB       Verbose messages
563
564 Return:
565
566  t              if refreshed
567  nil" t nil)
568
569 (autoload (quote tinydired-load-all-marked-files) "tinydired" "\
570 Load all marked files into Emacs.
571 Does not load files which are already in Emacs.
572 If ARG is non-nil, remove mark if file was loaded. VERB." t nil)
573
574 (autoload (quote tinydired-kill-dired-and-ange-session) "tinydired" "\
575 Kill the current dired buffer and possible ange-ftp buffer. VERB.
576 This is like `dired-delete-and-exit'." t nil)
577
578 (autoload (quote tinydired-kill-all-ange-and-dired-buffers) "tinydired" "\
579 Kill all ange-ftp buffers _and_ all remote dired buffers. VERB." t nil)
580
581 (autoload (quote tinydired-kill-all-ange-buffers) "tinydired" "\
582 Kill all ange-ftp process buffers.
583 If you want to kill one buffer at a time, use
584 `tinydired-switch-to-some-ange-ftp-buffer' to switch to individual buffer
585 and use \\[kill-buffer] to kill session.
586
587 This function is primarily used for cleanups. After a while
588 you may end up with many ftp session and it's nice if
589 you can get rid of them fast.
590
591 Don't worry about the dired buffers, Ange will automatically
592 create connection, if you use \"g\" -- rever-buffer, in a dired
593 that is associated with ange-ftp." t nil)
594
595 (autoload (quote tinydired-switch-to-some-ange-ftp-buffer) "tinydired" "\
596 Gather all ange FTP buffers and offer completion menu.
597 If there is only one Ange buffer, switches to it without asking." t nil)
598
599 ;;;***
600 \f
601 ;;;### (autoloads (tinyeat-eat tinyeat-delete-paragraph tinyeat-kill-buffer-lines
602 ;;;;;;  tinyeat-kill-buffer-lines-min tinyeat-kill-line-back tinyeat-kill-line
603 ;;;;;;  tinyeat-delete-whole-word tinyeat-join-lines tinyeat-forward-preserve
604 ;;;;;;  tinyeat-forward tinyeat-backward-preserve tinyeat-backward
605 ;;;;;;  tinyeat-zap-line tinyeat-erase-buffer) "tinyeat" "tinyeat.el"
606 ;;;;;;  (15378 27672))
607 ;;; Generated autoloads from tinyeat.el
608  (autoload 'tinyeat-version "tinyeat" "Display commentary." t)
609  (autoload 'tinyeat-debug-toggle "tinyeat" "" t)
610  (autoload 'tinyeat-debug-show   "tinyeat" "" t)
611
612 (autoload (quote tinyeat-erase-buffer) "tinyeat" "\
613 Erase buffer." t nil)
614
615 (autoload (quote tinyeat-zap-line) "tinyeat" "\
616 Kill whole line, including the final newline." t nil)
617
618 (autoload (quote tinyeat-backward) "tinyeat" "\
619 Eat backward. See `tinyeat-eat'." t nil)
620
621 (autoload (quote tinyeat-backward-preserve) "tinyeat" "\
622 Eat forward, but handle spaces differently. See `tinyeat-eat'." t nil)
623
624 (autoload (quote tinyeat-forward) "tinyeat" "\
625 Eat forward. See `tinyeat-eat' function." t nil)
626
627 (autoload (quote tinyeat-forward-preserve) "tinyeat" "\
628 Eat forward, but handle spaces differently. See `tinyeat-eat'." t nil)
629
630 (autoload (quote tinyeat-join-lines) "tinyeat" "\
631 Join this and next line with one space, and go to the joint." t nil)
632
633 (autoload (quote tinyeat-delete-whole-word) "tinyeat" "\
634 Delete word at point. Cursor at whitespace, calls `fixup-whitespace'.
635
636 References:
637
638   `tinyeat-:eat-full-word-charset'" t nil)
639
640 (autoload (quote tinyeat-kill-line) "tinyeat" "\
641 Same as `kill-line', except the killed text isn't put into cut buffer.
642 This way you can retain mouse selection in cut buffer.
643 This only interests people who can use mouse." t nil)
644
645 (autoload (quote tinyeat-kill-line-back) "tinyeat" "\
646 Like `kill-line' but backward." t nil)
647
648 (autoload (quote tinyeat-kill-buffer-lines-min) "tinyeat" "\
649 Kill until `point-min'. Optionally BACK." t nil)
650
651 (autoload (quote tinyeat-kill-buffer-lines) "tinyeat" "\
652 Kill to the `point-max' or BACK to the `point-min' with ARG." t nil)
653
654 (autoload (quote tinyeat-delete-paragraph) "tinyeat" "\
655 Delete current paragraph, separated by empty lines." t nil)
656
657 (autoload (quote tinyeat-eat) "tinyeat" "\
658 Eat *appropriate* text forward, if BACK then backward.
659
660 The optional SPACE-PRESERVE changes the space eating (VERB).
661
662 A.  when it is NIL and BACK is anything.   * marks the cursor.
663          text1 text1        *     text2  text2
664     -->  text1 text1 text2  text2                   ;one space left
665
666 B.  when it is NON-NIL and BACK nil
667          text1 text1        *     text2  text2
668     -->  text1 text1        *text2  text2            ;delete right spaces
669
670 C.  when it is NON-NIL and BACK t
671          text1 text1        *     text2  text2
672          text1 text1*     text2  text2               ;delete left spaces
673
674 References:
675
676   `tinyeat-:non-word-chars'" t nil)
677
678 ;;;***
679 \f
680 ;;;### (autoloads nil "tinyef" "tinyef.el" (15378 27672))
681 ;;; Generated autoloads from tinyef.el
682  (autoload 'tinyef-mode         "tinyef" "" t)
683  (autoload 'turn-off-tinyef-mode        "tinyef" "" t)
684  (autoload 'turn-on-tinyef-mode "tinyef" "" t)
685  (autoload 'tinyef-commentary     "tinyef" "" t)
686  (autoload 'tinyef-version        "tinyef" "" t)
687
688 ;;;***
689 \f
690 ;;;### (autoloads (tinygnus-nslookup-save tinygnus-mark-deleted tinygnus-install)
691 ;;;;;;  "tinygnus" "tinygnus.el" (15409 63832))
692 ;;; Generated autoloads from tinygnus.el
693  (autoload 'tinygnus-debug-toggle "tinygnus" "" t)
694  (autoload 'tinygnus-debug-show   "tinygnus" "" t)
695  (autoload 'tinygnus-version "tinygnus" "Display commentary." t)
696  (autoload 'tinygnus-summary-install-mode        "tinygnus" "" t)
697  (autoload 'tinygnus-summary-mode                "tinygnus" "" t)
698  (autoload 'turn-on-tinygnus-summary-mode        "tinygnus" "" t)
699  (autoload 'turn-off-tinygnus-summary-mode "tinygnus" "" t)
700  (autoload 'tinygnus-summary-commentary    "tinygnus" "" t)
701  (autoload 'tinygnus-summary-version       "tinygnus" "" t)
702  (autoload 'tinygnus-group-install-mode   "tinygnus" "" t)
703  (autoload 'tinygnus-group-mode         "tinygnus" "" t)
704  (autoload 'turn-on-tinygnus-group-mode   "tinygnus" "" t)
705  (autoload 'turn-off-tinygnus-group-mode  "tinygnus" "" t)
706  (autoload 'tinygnus-group-commentary     "tinygnus" "" t)
707  (autoload 'tinygnus-group-version        "tinygnus" "" t)
708
709 (autoload (quote tinygnus-install) "tinygnus" "\
710 Install package. Optionally UNINSTALL." t nil)
711
712 (autoload (quote tinygnus-mark-deleted) "tinygnus" "\
713 Mark current article expirable(mail) or deleted(news)." t nil)
714
715 (autoload (quote tinygnus-nslookup-save) "tinygnus" "\
716 READ or save `tinygnus-:nslookup-table' to `tinygnus-:nslookup-file'.
717 See function `tinygnus-article-ube-send-to-postmasters'." t nil)
718
719 ;;;***
720 \f
721 ;;;### (autoloads (tinyhotlist-remove tinyhotlist-add tinyhotlist-control
722 ;;;;;;  tinyhotlist-control-kbd tinyhotlist-load-hotlist tinyhotlist-save-hotlist)
723 ;;;;;;  "tinyhotlist" "tinyhotlist.el" (15384 58070))
724 ;;; Generated autoloads from tinyhotlist.el
725
726 (autoload (quote tinyhotlist-save-hotlist) "tinyhotlist" "\
727 Call `tinyhotlist-load-hotlist' with arg to save hotlist. ARGS are ignored." t nil)
728
729 (autoload (quote tinyhotlist-load-hotlist) "tinyhotlist" "\
730 Load or SAVE hotlist configuration from `tinyhotlist-:hotlist-file'.
731 When the hotlist file is loaded, only valid entries from there
732 are selected to `tinyhotlist-:cache': If File does not exist, it is dropped.
733
734 Return:
735
736  nil t" t nil)
737
738 (autoload (quote tinyhotlist-control-kbd) "tinyhotlist" "\
739 Same as `tinyhotlist-control' with ARG, but you can call this from keyboard." t nil)
740
741 (autoload (quote tinyhotlist-control) "tinyhotlist" "\
742 Control center of hotlist. Use mouse EVENT to position popup.
743
744 Optional ARG can be:
745
746   nil           show the hotlist
747   0             kill all members from hotlist.
748   9             kill all, but initalize with defaults.
749   nbr           any number, add current active buffer to hotlist
750   -             negative number, remove item from hotlist. Eg. hit \\[universal-argument]  -
751   1 x \\[universal-argument]       remove current buffer from hotlist
752   2 x \\[universal-argument]       Save hotlist
753   3 x \\[universal-argument]       load hotlist." t nil)
754
755 (autoload (quote tinyhotlist-add) "tinyhotlist" "\
756 Add current buffer to hotlist." t nil)
757
758 (autoload (quote tinyhotlist-remove) "tinyhotlist" "\
759 Remove current buffer from hotlist." t nil)
760
761 ;;;***
762 \f
763 ;;;### (autoloads (tinyigrep-menu) "tinyigrep" "tinyigrep.el" (15382
764 ;;;;;;  22904))
765 ;;; Generated autoloads from tinyigrep.el
766
767 (autoload (quote tinyigrep-menu) "tinyigrep" "\
768 Igrep command menu." t nil)
769
770 ;;;***
771 \f
772 ;;;### (autoloads (tinyindent-mode tinyindent-tt-mode) "tinyindent"
773 ;;;;;;  "tinyindent.el" (15378 27672))
774 ;;; Generated autoloads from tinyindent.el
775  (autoload 'tinyindent-version "tinyindent" "Display commentary." t)
776
777 (autoload (quote tinyindent-tt-mode) "tinyindent" "\
778 Toggle variable `tinyindent-tt-mode' with ARG. See description in `tinyindent-mode'." t nil)
779
780 (autoload (quote tinyindent-mode) "tinyindent" "\
781 Toggle relative indentation mode with ARG.
782
783 Indentation is determined according to previous lines. Special
784 indent happens only at the beginning of line, where user is asked if
785 he wants to have relative or \"hard\" indentation.
786
787 Abount function `tinyindent-tt-mode'
788
789 This isn't really mode. It just turns one flag on in `tinyindent-mode', so that
790 it behaves a little differently. If the `tinyindent-mode' is not running, it
791 wiil be turned on. turning off `tinyindent-tt-mode' _does_not_ end `tinyindent-mode'.
792
793 Sometimes you want to control between 'hard' tab and 'soft' tab, ie.
794 relative indent. This mode causes second character to be read after
795 tab key is hit. The following happens:
796
797 TAB TAB     inserts hard tab
798 TAB SPC     indent relative without inserting space char.
799 TAB x       indents relative and inserting character x
800
801 \\{tinyindent-:mode-map}" t nil)
802
803 ;;;***
804 \f
805 ;;;### (autoloads (ti::compat-timer-control) "tinylib" "tinylib.el" (15411
806 ;;;;;;  18540))
807 ;;; Generated autoloads from tinylib.el
808
809 (autoload (quote ti::compat-timer-control) "tinylib" "\
810 With `run-at-time' TIME REPEAT FUNCTION keep or remove timer. VERB." nil nil)
811
812 ;;;***
813 \f
814 ;;;### (autoloads (ti::ck-do ti::ck-debug-toggle) "tinylibck" "tinylibck.el"
815 ;;;;;;  (15378 27672))
816 ;;; Generated autoloads from tinylibck.el
817
818 (autoload (quote ti::ck-debug-toggle) "tinylibck" "\
819 Turn debug on or off with ARG. See buffer `ti::ck-:debug-buffer'." t nil)
820
821 (autoload (quote ti::ck-do) "tinylibck" "\
822 Transform key binding to XEmacs or Emacs in current environment.
823 on current emacs. This enables you to have same key binding file
824 for both emacs versions. You can write key bindings either in XEmacs
825 or Emacs style.
826
827     In Emacs :  (ti::ck-do '(meta up)) --> [M-up]
828     In XEmacs:  (ti::ck-do [M-up])     --> '(meta up)
829
830 This function does the conversion only if it needs to, and returns
831 immediately if no conversion is needed. This should minimise performance
832 penalty.
833
834 Input:
835   KEY    key sequence
836   XE     flag. If this is nil, then Emacs env. is assumed. However
837          `ti::ck-:xemacs-flag' is obeyed if it is non-nil.
838          If non-nil, then XEmacs env. is assumed and conversion to
839          XEmacs like bindings are done." nil nil)
840
841 ;;;***
842 \f
843 ;;;### (autoloads (ti::id-info) "tinylibid" "tinylibid.el" (15378
844 ;;;;;;  27672))
845 ;;; Generated autoloads from tinylibid.el
846
847 (autoload (quote ti::id-info) "tinylibid" "\
848 Try to identify buffer type.
849
850 Function doesn't rely on mode, because that doesn't necessarily tell what
851 the buffer holds. Many users still program their shell scripts in
852 `fundamental-mode' or so. This means that `major-mode' isn't checked,
853 because calling function can do it easily.
854
855 If this function returns nil, _then_ it's probably the time to check
856 the `major-mode'.
857
858 The normal order of evaluation is as follows:
859 -  First line in the file
860 -  Whole filename including path = `buffer-file-name'
861 -  File name extension
862 -  `buffer-name' is checked. [temporary buffer has no file name]
863 -  Whole buffer is searched for RE texts
864
865 Input:
866
867   MODE              flag, controls return value format
868   VARIABLE-LOOKUP   flag, read buffer type from cache. (From previous call)
869   VERB              if non-nil, verbose messages allowed.
870
871 Return values:
872
873   when optional MODE = nil
874   Some appropriate _string_ that represents the content. notice that this
875   string is usually generalised description, _but_ it the file has special
876   1st line in form of -*-..-*- the string is direct mode name string.
877
878   when optional MODE = non-nil
879   Return possible mode name as _symbol_
880
881   when VARIABLE is non-nil, the variable `ti::id-:info' is read instead.
882   If it has non-nil value, the value is returned, otherwise full buffer
883   is parsed again and variable's value is updated.
884
885 References:
886
887   `ti::id-func-alist'  order of evaluation.
888   `ti::id-:info'            buffer local variable updated during every call." t nil)
889
890 ;;;***
891 \f
892 ;;;### (autoloads (ti::menu-menu ti::menu-set-doc-string ti::menu-add)
893 ;;;;;;  "tinylibmenu" "tinylibmenu.el" (15378 27672))
894 ;;; Generated autoloads from tinylibmenu.el
895
896 (autoload (quote ti::menu-add) "tinylibmenu" "\
897 Add to menu MENU-SYMBOL elt (CH . CELL). Optionally DELETE.
898
899 Example:
900
901   (ti::menu-add 'ti::menu-:menu-sample ?2  nil 'delete)
902   (ti::menu-add 'ti::menu-:menu-sample ?t '( (my-test 1 2 3)))
903
904 Return:
905
906   nil       no add done due to existing CELL
907             no remove due to non-existing CELL" nil nil)
908
909 (autoload (quote ti::menu-set-doc-string) "tinylibmenu" "\
910 Use  MENU-SYMBOL and set its DOC-STRING.
911
912 Example:
913
914   (ti::menu-set-doc-string 'ti::menu-:menu-sample \"?=help, 1=test1, t=myTest\")" nil nil)
915
916 (autoload (quote ti::menu-menu) "tinylibmenu" "\
917 The menu navigation engine.
918
919 Input:
920
921   MENU-SYMBOL           variable symbol containing menu items
922   PFX-ARG               the prefix arg user ppossibly passed to menu
923
924 References:
925
926   `ti::menu-:menu-sample'   Show how the menu is constructed.
927   `ti::menu-:prefix-arg'    Copy of current prefix arg" nil nil)
928
929 ;;;***
930 \f
931 ;;;### (autoloads (ti::text-mark-region ti::text-unmark-region ti::text-mouse-unmark-region
932 ;;;;;;  ti::text-mouse-mark-region ti::text-re-search-backward ti::text-re-search-forward
933 ;;;;;;  ti::text-buffer ti::text-looking-at ti::text-re-search) "tinylibt"
934 ;;;;;;  "tinylibt.el" (15378 27672))
935 ;;; Generated autoloads from tinylibt.el
936
937 (autoload (quote ti::text-re-search) "tinylibt" "\
938 Highlight found text with search face.
939
940 Note:
941
942     The beginning of match and end of match will have
943     property 'rear-nonsticky t, so that adding characters before of after
944     text, won't inherit the face.
945
946 Input:
947
948   RE            str  regexp
949   DIRECTION     bool non-nil means backward
950   LEVEL         nbr  which subexpression in re to highlight, default is 0
951   MAXP          nbr  last search point [default until bob/eob]
952
953   FACE          sym  face symbol
954                      if symbol is 'null then set face to value nil
955                      or if this is list; then it must be properly list
956                      of format '(PROP PROP-VAL  PROP PROP-VAL ..)
957
958   MODE          nbr  signify that function should highlight all matches
959                      that occur within LEVEL..NBR
960                      if you have lot's of xx(match)yy|zz(match)tt|
961                      the subexpression are counted from left to to
962                      right: 1,2 ...
963   SAVE-UNDO     flag non-nil means that the highlight information is
964                      recorded for undo. This flag in on if function is
965                      called interactively. NOTE: the undo information is
966                      saved only if something was matched.
967
968 Return:
969
970  nil            No match
971  nbr            start of match at LEVEL." nil nil)
972
973 (autoload (quote ti::text-looking-at) "tinylibt" "\
974 Highlight found RE at LEVEL with FACE-OR-PLIST.
975 The LEVEL is subexpression to highlight. PLIST means property list." t nil)
976
977 (autoload (quote ti::text-buffer) "tinylibt" "\
978 Highlight RE and sub LEVEL in whole buffer, starting from `point-min'.
979 Preserve point.
980
981 See `ti::text-re-search' for descriptions of FACE MODE and SAVE-UNDO." t nil)
982
983 (autoload (quote ti::text-re-search-forward) "tinylibt" "\
984 Search RE and highlight forward until `point-max'.
985 Optional prefix arg tells which subexpression LEVEL to match that
986 function should highlight. point is preserved during call.
987
988 See `ti::text-re-search' for descriptions of FACE MODE SAVE-UNDO." t nil)
989
990 (autoload (quote ti::text-re-search-backward) "tinylibt" "\
991 Search RE and highlight backward until `point-min'.
992 Optional prefix arg tells which subexpression LEVEL to match that
993 function should highlight. point is preserved during call.
994
995 See `ti::text-re-search' for descriptions of FACE MODE SAVE-UNDO." t nil)
996
997 (autoload (quote ti::text-mouse-mark-region) "tinylibt" "\
998 Highlight region BEG END. EVENT is mouse event." t nil)
999
1000 (autoload (quote ti::text-mouse-unmark-region) "tinylibt" "\
1001 Remove highlight from region BEG END. EVENT is mouse event." t nil)
1002
1003 (autoload (quote ti::text-unmark-region) "tinylibt" "\
1004 Remove highlight from region BEG END." t nil)
1005
1006 (autoload (quote ti::text-mark-region) "tinylibt" "\
1007 Highlight BEG END. With optional prefix arg REMOVE all matching FACE." t nil)
1008
1009 ;;;***
1010 \f
1011 ;;;### (autoloads nil "tinylisp" "tinylisp.el" (15407 17982))
1012 ;;; Generated autoloads from tinylisp.el
1013  (autoload 'tinylisp-elp-summary-mode            "tinylisp" t t)
1014  (autoload 'turn-on-tinylisp-elp-summary-mode  "tinylisp" t t)
1015  (autoload 'turn-off-tinylisp-elp-summary-mode "tinylisp" t t)
1016  (autoload 'tinylisp-version "tinylisp" "Display commentary" t)
1017
1018 ;;;***
1019 \f
1020 ;;;### (autoloads (tinyload-loader-process tinyload-install) "tinyload"
1021 ;;;;;;  "tinyload.el" (15378 27672))
1022 ;;; Generated autoloads from tinyload.el
1023
1024 (autoload (quote tinyload-install) "tinyload" "\
1025 Install package or REMOVE.
1026 This function removes any previous TinyLoad timer process and resets
1027 the list pointer to 0." t nil)
1028
1029 (autoload (quote tinyload-loader-process) "tinyload" "\
1030 Load packages defined in `tinyload-:load-list'.
1031 If called interactively, FORCE loading all packages in the list." t nil)
1032
1033 ;;;***
1034 \f
1035 ;;;### (autoloads (tinylock-lock tinylock-history) "tinylock" "tinylock.el"
1036 ;;;;;;  (15378 27674))
1037 ;;; Generated autoloads from tinylock.el
1038  (autoload 'tinylock-version "tinylock" "Display commentary." t)
1039
1040 (autoload (quote tinylock-history) "tinylock" "\
1041 Displays login history. Optionally to given buffer BUFFER." t nil)
1042
1043 (autoload (quote tinylock-lock) "tinylock" "\
1044 Lock Emacs with PSW password and MSG.
1045 Message is displayed if LOCK-NOW is nil.
1046 If LOCK-NOW is non-nil emacs is immediately locked with PSW." t nil)
1047
1048 ;;;***
1049 \f
1050 ;;;### (autoloads (tinymacro-assign tinymacro-end-kbd-macro-and-assign)
1051 ;;;;;;  "tinymacro" "tinymacro.el" (15378 27674))
1052 ;;; Generated autoloads from tinymacro.el
1053  (autoload 'tinymacro-version "tinymacro" "Display commentary." t)
1054
1055 (autoload (quote tinymacro-end-kbd-macro-and-assign) "tinymacro" "\
1056 Terminate reading macro and assign it to key." t nil)
1057
1058 (autoload (quote tinymacro-assign) "tinymacro" "\
1059 Name last macro and assigns it to user defined KEY.
1060 Runs tinymacro-:macro-assigned-hook if key macro gets installed.
1061 The query options should be turned off if you call this within
1062 function, since it always return nil if the options are on.
1063
1064 Input:
1065
1066   KEY   Should be valid emacs key-bind-sequence/key-vector
1067   VERB  Boolean, verbose messages
1068
1069 Return:
1070
1071   t    is assigned
1072   nil  not assigned `keyboard-quit'" t nil)
1073
1074 ;;;***
1075 \f
1076 ;;;### (autoloads (tinymail-on-off-toggle tinymail-mail tinymail-deactivate-and-send-to-you)
1077 ;;;;;;  "tinymail" "tinymail.el" (15411 20732))
1078 ;;; Generated autoloads from tinymail.el
1079  (autoload 'tinymail-version "tinymail" "Display commentary." t)
1080  (autoload 'tinymail-mode                "tinymail" "" t)
1081  (autoload 'turn-on-tinymail-mode  "tinymail" "" t)
1082  (autoload 'turn-off-tinymail-mode "tinymail" "" t)
1083  (autoload 'tinymail-commentary    "tinymail" "" t)
1084
1085 (autoload (quote tinymail-deactivate-and-send-to-you) "tinymail" "\
1086 Deactivate TIMI and change To field to point to your address.
1087 This function is normally used when you use mailing lists. See
1088 documentation in the tinymail.el or call \\[tinymail-version]." t nil)
1089
1090 (autoload (quote tinymail-mail) "tinymail" "\
1091 Prepare mail mode.
1092 Add or changes Cc, FF, X-Sender-Info fields on the fly while you're
1093 composing the message.
1094
1095 Input:
1096
1097   DISABLE       Disables package.
1098   VERB          print verbose message.
1099
1100 References:
1101
1102   `tinymail-:feature-hook'." nil nil)
1103
1104 (autoload (quote tinymail-on-off-toggle) "tinymail" "\
1105 Toggle TIMI mode on and off by Changing spacing of To field.
1106 This affects automatic Cc and X-Sender-Info tracking.
1107 ARG behaves  like mode argument.
1108
1109 Without arg, this toggless Cc tracking, with prefix argument,
1110 it toggless both Cc and X-Sender-Info tracking." t nil)
1111
1112 ;;;***
1113 \f
1114 ;;;### (autoloads (tinymailbox-message-to-file tinymailbox-message-to-folder
1115 ;;;;;;  tinymailbox-copy-body tinymailbox-copy tinymailbox-delete
1116 ;;;;;;  tinymailbox-begin) "tinymailbox" "tinymailbox.el" (15407
1117 ;;;;;;  48240))
1118 ;;; Generated autoloads from tinymailbox.el
1119  (autoload 'tinymailbox-version "tinymailbox" "Display commentary" t)
1120  (autoload 'tinymailbox-install-mode  "tinymailbox" "" t)
1121  (autoload 'tinymailbox-mode        "tinymailbox" "" t)
1122  (autoload 'turn-on-tinymailbox-mode  "tinymailbox" "" t)
1123  (autoload 'turn-off-tinymailbox-mode "tinymailbox" "" t)
1124  (autoload 'tinymailbox-commentary    "tinymailbox" "" t)
1125  (autoload 'tinymailbox-forward "tinymailbox" "Go to next message." t)
1126  (autoload 'tinymailbox-backward "tinymailbox" "Go to previous message." t)
1127
1128 (autoload (quote tinymailbox-begin) "tinymailbox" "\
1129 Move to message begin. Optionally BACKWARD." t nil)
1130
1131 (autoload (quote tinymailbox-delete) "tinymailbox" "\
1132 Delete current message. point must be inside message." t nil)
1133
1134 (autoload (quote tinymailbox-copy) "tinymailbox" "\
1135 Copy current message. point must be inside message." t nil)
1136
1137 (autoload (quote tinymailbox-copy-body) "tinymailbox" "\
1138 Copy body of current message. point must be inside message." t nil)
1139
1140 (autoload (quote tinymailbox-message-to-folder) "tinymailbox" "\
1141 File current message by appending it to FILE." t nil)
1142
1143 (autoload (quote tinymailbox-message-to-file) "tinymailbox" nil t nil)
1144
1145 ;;;***
1146 \f
1147 ;;;### (autoloads (tinymy-buffer-file-chmod tinymy-install tinymy-define-keys-extra
1148 ;;;;;;  tinymy-define-keys) "tinymy" "tinymy.el" (15407 17982))
1149 ;;; Generated autoloads from tinymy.el
1150  (autoload 'tinymy-version "tinymy" "Display commentary." t)
1151
1152 (autoload (quote tinymy-define-keys) "tinymy" "\
1153 Install keys." t nil)
1154
1155 (autoload (quote tinymy-define-keys-extra) "tinymy" "\
1156 Define extra global keys." t nil)
1157  (autoload  'tinymy-install-files "tinymy" "" t)
1158
1159 (autoload (quote tinymy-install) "tinymy" "\
1160 Configures Emacs variables and bindings." t nil)
1161
1162 (autoload (quote tinymy-buffer-file-chmod) "tinymy" "\
1163 Toggle current buffer's Read-Write permission permanently on disk. VERB.
1164 Does nothing if buffer is not visiting a file or file is not owned by us." t nil)
1165
1166 ;;;***
1167 \f
1168 ;;;### (autoloads nil "tinynbr" "tinynbr.el" (15381 6616))
1169 ;;; Generated autoloads from tinynbr.el
1170  (autoload 'tinynbr-version "tinynbr" "Display commentary." t)
1171  (autoload 'tinynbr-mode                "tinynbr" "" t)
1172  (autoload 'turn-on-tinynbr-mode        "tinynbr" "" t)
1173  (autoload 'tun-off-tinynbr-mode        "tinynbr" "" t)
1174  (autoload 'tinynbr-commentary    "tinynbr" "" t)
1175  (autoload 'tinynbr-int-to-hex  "tinynbr" "" t)
1176  (autoload 'tinynbr-int-to-oct  "tinynbr" "" t)
1177  (autoload 'tinynbr-int-to-bin  "tinynbr" "" t)
1178  (autoload 'tinynbr-hex-to-int  "tinynbr" "" t)
1179  (autoload 'tinynbr-oct-to-int  "tinynbr" "" t)
1180  (autoload 'tinynbr-bin-to-int  "tinynbr" "" t)
1181
1182 ;;;***
1183 \f
1184 ;;;### (autoloads nil "tinypad" "tinypad.el" (15378 27674))
1185 ;;; Generated autoloads from tinypad.el
1186  (autoload 'tinypad-mode                "tinypad" "" t)
1187  (autoload 'turn-on-tinypad-mode        "tinypad" "" t)
1188  (autoload 'turn-off-tinypad-mode       "tinypad" "" t)
1189  (autoload 'tinypad-version "tinypad" "Display commentary." t)
1190
1191 ;;;***
1192 \f
1193 ;;;### (autoloads (tinypage-go-next tinypage-go-previous tinypage-yank-after
1194 ;;;;;;  tinypage-yank-before tinypage-yank tinypage-cut tinypage-copy
1195 ;;;;;;  tinypage-select tinypage-region-action) "tinypage" "tinypage.el"
1196 ;;;;;;  (15378 27674))
1197 ;;; Generated autoloads from tinypage.el
1198  (autoload 'tinypage-version "tinypage" "Display commentary." t)
1199  (autoload 'tinypage-mode                "tinypage" "" t)
1200  (autoload 'turn-on-tinypage-mode  "tinypage" "" t)
1201  (autoload 'turn-off-tinypage-mode "tinypage" "" t)
1202  (autoload 'tinypage-commentary    "tinypage" "" t)
1203
1204 (autoload (quote tinypage-region-action) "tinypage" "\
1205 Execute action ACT. Return t or nil. VERB." nil nil)
1206
1207 (autoload (quote tinypage-select) "tinypage" "\
1208 Select page. If sitting on page Marker, use page below. VERB." t nil)
1209
1210 (autoload (quote tinypage-copy) "tinypage" "\
1211 Select page. If sitting on page Marker, use page below. VERB." t nil)
1212
1213 (autoload (quote tinypage-cut) "tinypage" "\
1214 Select page. If sitting on page Marker, use page below. VERB." t nil)
1215
1216 (autoload (quote tinypage-yank) "tinypage" "\
1217 Yank page from register. VERB." t nil)
1218
1219 (autoload (quote tinypage-yank-before) "tinypage" "\
1220 Yank page from register, but _before_ current page. VERB." t nil)
1221
1222 (autoload (quote tinypage-yank-after) "tinypage" "\
1223 Yank page from register, but _after_ current page.
1224 Optionally BEFORE with MSG and VERB." t nil)
1225
1226 (autoload (quote tinypage-go-previous) "tinypage" "\
1227 Go to previous page. VERB." t nil)
1228
1229 (autoload (quote tinypage-go-next) "tinypage" "\
1230 Go to next page, optionally BACK. Return point if moved. VERB." t nil)
1231
1232 ;;;***
1233 \f
1234 ;;;### (autoloads nil "tinypair" "tinypair.el" (15384 58070))
1235 ;;; Generated autoloads from tinypair.el
1236  (autoload 'tinypair-version "tinypair" "Display commentary." t)
1237  (autoload 'tinypair-mode            "tinypair" "" t)
1238  (autoload 'turn-on-tinypair-mode    "tinypair" "" t)
1239  (autoload 'turn-off-tinypair-mode   "tinypair" "" t)
1240  (autoload 'tinypair-commentary      "tinypair" "" t)
1241
1242 ;;;***
1243 \f
1244 ;;;### (autoloads (tinypath-report-mode) "tinypath" "tinypath.el"
1245 ;;;;;;  (15407 48240))
1246 ;;; Generated autoloads from tinypath.el
1247
1248 (autoload (quote tinypath-report-mode) "tinypath" "\
1249 Major mode to help working with `tinypath-cache-duplicate-report'. VERB.
1250
1251 \\{tinypath-report-mode-map}" t nil)
1252
1253 ;;;***
1254 \f
1255 ;;;### (autoloads (tinyperl-pod-grep-and-make-faq-answer tinyperl-pod-grep
1256 ;;;;;;  tinyperl-pod-by-manpage tinyperl-pod-find-file tinyperl-pod-by-module
1257 ;;;;;;  tinyperl-module-find-file tinyperl-perldoc tinyperl-pod-kill-buffers
1258 ;;;;;;  turn-on-tinyperl-mode-all-buffers tinyperl-install) "tinyperl"
1259 ;;;;;;  "tinyperl.el" (15407 48240))
1260 ;;; Generated autoloads from tinyperl.el
1261  (autoload 'tinyperl-version "tinyperl" "Display commentary." t)
1262
1263 (autoload (quote tinyperl-install) "tinyperl" "\
1264 Install tinyperl.
1265
1266 Input:
1267
1268   FORCE     If non-nil, rebuild all variables and
1269             save new `(tinyperl-cache-file-name)'.
1270             If nil, read saved variables from `(tinyperl-cache-file-name)'.
1271
1272   VERB      Allow verbose messaegs." t nil)
1273
1274 (autoload (quote turn-on-tinyperl-mode-all-buffers) "tinyperl" "\
1275 Turn function `tinyperl-mode' on in every perl buffer. Optionally turn OFF." t nil)
1276  (autoload 'tinyperl-mode           "tinyperl" ""       t)
1277  (autoload 'turn-on-tinyperl-mode   "tinyperl" ""       t)
1278  (autoload 'turn-off-tinyperl-mode  "tinyperl" ""       t)
1279  (autoload 'tinyperl-commentary     "tinyperl" "" t)
1280  (autoload 'tinyperl-pod-view-mode          "tinyperl" "" t)
1281  (autoload 'turn-on-tinyperl-pod-view-mode  "tinyperl" "" t)
1282  (autoload 'turn-off-tinyperl-pod-view-mode "tinyperl" "" t)
1283  (autoload 'tinyperl-pod-write-mode          "tinyperl" "" t)
1284  (autoload 'turn-on-tinyperl-pod-write-mode  "tinyperl" "" t)
1285  (autoload 'turn-off-tinyperl-pod-write-mode "tinyperl" "" t)
1286
1287 (autoload (quote tinyperl-pod-kill-buffers) "tinyperl" "\
1288 Kill all temporary POD buffers." t nil)
1289
1290 (autoload (quote tinyperl-perldoc) "tinyperl" "\
1291 Run perldoc with STRING. First try with -f then without it.
1292 Show content in `tinyperl-:perldoc-buffer'. If buffer is visible in
1293 some other frame, the cursor is not moved there. Only contents is updated.
1294
1295 The last used STRING is cached and if called next time with same
1296 string, the shell command is not called unless FORCE is non-nil.
1297
1298 Input:
1299
1300   STRING    Seach string
1301   FORCE     Force calling shell although answer cached
1302   VERB      flag, Allow verbose messages
1303
1304 References:
1305
1306   `tinyperl-:perldoc-hook'" t nil)
1307
1308 (autoload (quote tinyperl-module-find-file) "tinyperl" "\
1309 Load Perl MODULE source." t nil)
1310
1311 (autoload (quote tinyperl-pod-by-module) "tinyperl" "\
1312 Show pod manual page for MODULE or load MODULE.
1313
1314 Input:
1315
1316   MODULE    The Perl module as it appears in `use' statement,
1317             like Getopt::Long the '.pm' is automatically added.
1318   MODE      If non-nil, load source file, not pod." t nil)
1319
1320 (autoload (quote tinyperl-pod-find-file) "tinyperl" "\
1321 Run pod2text on FILE and create new buffer: '*pod' + FILE + '*'.
1322 If file contains pod documentation section, it will be formatted nicely." t nil)
1323
1324 (autoload (quote tinyperl-pod-by-manpage) "tinyperl" "\
1325 Display pod for FILE." t nil)
1326
1327 (autoload (quote tinyperl-pod-grep) "tinyperl" "\
1328 Grep REGEXP from perl pod files.
1329 This is your way to find what pages contain references to the items you're
1330 looking for. However if you select the file from compile buffer, it is
1331 in the unconverted format (.pod). A better would be to momorize the
1332 pod file name, like
1333
1334    perlre.pod:165:    \\Z       Match at only e
1335
1336 And call immediately \\[tinyperl-pod-by-manpage] and view `perlre' in
1337 more pleasant manner. Few C-s searches or \\[occur] will take you
1338 to the correct position." t nil)
1339
1340 (autoload (quote tinyperl-pod-grep-and-make-faq-answer) "tinyperl" "\
1341 Grep REGEXP from perl pod files.
1342
1343 This function also gathers all =head topics that match the REGEXP.
1344 You can use generated page as an answer to 'Has this this question
1345 been answered in FAQ'" t nil)
1346
1347 ;;;***
1348 \f
1349 ;;;### (autoloads (tinypgp-hide-show-toggle tinypgp-xpgp-header-toggle
1350 ;;;;;;  tinypgp-xpgp-header-mode-toggle tinypgp-crypt-region tinypgp-crypt-mail
1351 ;;;;;;  tinypgp-decrypt-region tinypgp-decrypt-mail tinypgp-encrypt-region
1352 ;;;;;;  tinypgp-encrypt-region-sign tinypgp-encrypt-mail tinypgp-encrypt-mail-sign
1353 ;;;;;;  tinypgp-sign-region tinypgp-sign-mail tinypgp-sign-loose-info
1354 ;;;;;;  tinypgp-sign-mail-auto-mode) "tinypgp" "tinypgp.el" (15411
1355 ;;;;;;  18642))
1356 ;;; Generated autoloads from tinypgp.el
1357  (autoload 'tinypgp-newnym-req-acksend  "tinypgp" "" t)
1358  (autoload 'tinypgp-newnym-req-sigsend  "tinypgp" "" t)
1359  (autoload 'tinypgp-newnym-req-cryptrecv        "tinypgp" "" t)
1360  (autoload 'tinypgp-newnym-req-fixedsize        "tinypgp" "" t)
1361  (autoload 'tinypgp-newnym-req-disable  "tinypgp" "" t)
1362  (autoload 'tinypgp-newnym-req-fingerkey        "tinypgp" "" t)
1363  (autoload 'tinypgp-newnym-req-nobcc    "tinypgp" "" t)
1364
1365 (autoload (quote tinypgp-sign-mail-auto-mode) "tinypgp" "\
1366 Toggle autosigning mode according to ARG.
1367
1368 Input:
1369   0, -1     off
1370   nil       toggle
1371   t, 1      on
1372
1373   'push-on  Record previous value and turn on  auto signing.
1374   'push-off Record previous value and turn off auto signing.
1375   'pop      pop previous autosign value.
1376
1377 Return:
1378   nil       autosigning off
1379   non-nil   autosigning on" t nil)
1380
1381 (autoload (quote tinypgp-sign-loose-info) "tinypgp" "\
1382 Loose signature info.
1383 Input:
1384   VERB          Verbose messages." t nil)
1385
1386 (autoload (quote tinypgp-sign-mail) "tinypgp" "\
1387 Sign message in mail buffer.
1388
1389 Input:
1390
1391   REGISTER      flag, if non-bil store the signature to register.
1392                 This is the prefix arg user passes to program.
1393                 This will automatically turn off X-pgp.
1394   USER          key-id
1395   VERB          allow verbose messages
1396   NOXPGP        Prohibit X-Pgp
1397
1398 Notes:
1399
1400   if VERB is non-nil (set in interactive call), the pubring is
1401   changed if it the information is on the cache." t nil)
1402
1403 (autoload (quote tinypgp-sign-region) "tinypgp" "\
1404 Sign region.
1405
1406 Input:
1407
1408   BEG END       ints, region
1409   VERB          flag, verbose messages
1410   OPTIONS       string, flags to add to the real pgp command.
1411   NOERR         flag, return nil or t only
1412   REGISTER      flag, save results to register
1413   AS-IS         flag, if non-nil. no buffer modification is done.
1414                 Normally would delete whitespaces at the end of lines.
1415 " t nil)
1416
1417 (autoload (quote tinypgp-encrypt-mail-sign) "tinypgp" "\
1418 See `tinypgp-encrypt-mail'. Raise parameter 'sign'.
1419 SINGLE-OR-LIST NO-REPLACE SIGN-PWD OPTIONS VERB NOERR." t nil)
1420
1421 (autoload (quote tinypgp-encrypt-mail) "tinypgp" "\
1422 Encrypt mail buffer.
1423
1424 Input:
1425
1426   SINGLE-OR-LIST    List of key-ids. Interactive call reads To,CC,BCC.
1427   NO-REPLACE        prefix arg, store result to `tinypgp-:register'.
1428   SIGN-FLAG         if non-nil, sign at the same time as you encrypt.
1429   OPTIONS           Additional pgp option string.
1430   VERB              If non-nil, verbose messages.
1431   NOERR             If non-nil, do not call error.
1432
1433 Function call note:
1434
1435   [interactive]
1436   In case the EMAIL address you're sending doesn't have entry in your
1437   keyring, but you know that person has a PGP public key, then
1438   please remove the email address prior calling this function and
1439   it will prompt you a string to match for USER.
1440
1441   If this function is called interactively, it tries to set right
1442   pubring by querying cache and other keyrings (user prompted)
1443   Also the `tinypgp-:pgp-exe-interactive-option' is suppressed if
1444   `tinypgp-:r-mode-indication-flag' is non-nil
1445
1446   Normally the To field's address is read and used for encryption.
1447   However, if you are _on_ line that has email address in format
1448   <foo@site.com> then your are asked if you want to use this email
1449   instead. You can complete between this and To address.
1450
1451   [when called as lisp function]
1452   Be sure to take precaution when passing OPTIONS if the message is
1453   sent to remailer. Any extra keyword, like 'Comment:'
1454   may reveal your identity.
1455
1456   SINGLE-OR-LIST is not processed with `tinypgp-key-id-conversion'.
1457   You should call it manually if you want to respect user's
1458   substitution definitions.
1459
1460   [Genenal note]
1461   If there are multiple recipiens in the To, CC, BCC field the
1462   last keyring in the `tinypgp-pubring-table' is used when doing the
1463   encryption.
1464
1465 Input:
1466
1467   single-or-list    list of email addresses or KEY ID's
1468   no-replace        flag, do not replace area with encryption
1469   options           string, extra options passed to pgp exe
1470   verb              flag, allow printing messages." t nil)
1471
1472 (autoload (quote tinypgp-encrypt-region-sign) "tinypgp" "\
1473 Same as `tinypgp-encrypt-region' but raise 'sign' parameter.
1474 BEG END USER NO-REPLACE SIGN-PWD OPTIONS VERB" t nil)
1475
1476 (autoload (quote tinypgp-encrypt-region) "tinypgp" "\
1477 Encrypt region.
1478
1479 Input:
1480
1481   BEG END       region
1482   USER          key-id (possibly email) or list of keyIds.
1483   NO-REPLACE    prefix arg, store results to `tinypgp-:register'
1484   SIGN-PWD      if non-nil string, Sign at the same time as you encrypt.
1485   OPTIONS       Additional option string for PGP.
1486   VERB          If non-nil, Verbose messages." t nil)
1487
1488 (autoload (quote tinypgp-decrypt-mail) "tinypgp" "\
1489 Decrypt mail buffer.
1490 The PGP data in the buffer is detected by reading the CTB bits:
1491 see pgpformat.doc in pgp documentation.
1492
1493 Input:
1494
1495   NO-REPLACE    flag, prefix arg instructs to show the cotent in
1496                 separate buffer. See refrerence note too.
1497                 If this is 'preview and verb argument is nil-nil,
1498                 then automatically show content is different buffer.
1499
1500   TYPE          nil or \"pgp\" --> PGP encrypted
1501                 \"base64\" --> base64 signed and
1502                 \"conventional\" --> encrypted with conventional key.
1503
1504   VERB          Verbose mode.
1505
1506 References:
1507
1508   `tinypgp-:pgp-encrypted-p-function'
1509   `tinypgp-:decrypt-arg-interpretation'     for interactive calls
1510   `tinypgp-:pgp-decrypt-arg-function'     for interactive calls
1511   `tinypgp-:user-identity-table'" t nil)
1512
1513 (autoload (quote tinypgp-decrypt-region) "tinypgp" "\
1514 Decrypt region. Signal error is there is no decrypt message.
1515
1516 Input:
1517
1518   BEG END       int, region
1519   NO-REPLACE    flag, store contents to `tinypgp-:register'.
1520                 If values is 'review and verb is non-nil, also display
1521                 content in separate buffer. Calls `tinypgp-view-register'
1522   TYPE          string, Decrypt type: conventional, base64 or pgp
1523   VERB          flag, verbose messages" t nil)
1524
1525 (autoload (quote tinypgp-crypt-mail) "tinypgp" "\
1526 Crypt mail buffer.
1527
1528 Input:
1529
1530   PASSWORD      pass phrase
1531   NO-REPLACE    store contents to `tinypgp-:register'.
1532   COMMENT       Additional comment added
1533   VERB          verbose messages" t nil)
1534
1535 (autoload (quote tinypgp-crypt-region) "tinypgp" "\
1536 Crypt region.
1537
1538 Input:
1539
1540   BEG END       region
1541   PASSWORD      pass phrase
1542   NO-REPLACE    store contents to `tinypgp-:register'.
1543   COMMENT       The comment string.
1544   VERB          verbose messages" t nil)
1545
1546 (autoload (quote tinypgp-xpgp-header-mode-toggle) "tinypgp" "\
1547 Toggle X-pgp header mode with ARG.
1548
1549 References
1550   `tinypgp-:header-sign-table'     ,this variable overrides the signing mode." t nil)
1551
1552 (autoload (quote tinypgp-xpgp-header-toggle) "tinypgp" "\
1553 Togle moving signature FROM/TO headers." t nil)
1554
1555 (autoload (quote tinypgp-hide-show-toggle) "tinypgp" "\
1556 Togle hiding and showing the PGP signature." t nil)
1557
1558 ;;;***
1559 \f
1560 ;;;### (autoloads (turn-on-tinyprocmail-mode-all-buffers turn-off-tinyprocmail-mode-all-buffers)
1561 ;;;;;;  "tinyprocmail" "tinyprocmail.el" (15378 27674))
1562 ;;; Generated autoloads from tinyprocmail.el
1563  (autoload 'tinyprocmail-mode           "tinyprocmail" "" t)
1564  (autoload 'turn-on-tinyprocmail-mode   "tinyprocmail" "" t)
1565  (autoload 'turn-off-tinyprocmail-mode  "tinyprocmail" "" t)
1566  (autoload 'tinyprocmail-commentary     "tinyprocmail" "" t)
1567  (autoload 'tinyprocmail-version                "tinyprocmail" "" t)
1568  (autoload 'tinyprocmail-output-mode        "tinyprocmail" "" t)
1569  (autoload 'turn-on-tinyprocmail-output-mode  "tinyprocmail" "" t)
1570  (autoload 'turn-off-tinyprocmail-output-mode "tinyprocmail" "" t)
1571  (autoload 'tinyprocmail-install-files "tinyprocmail" t t)
1572
1573 (autoload (quote turn-off-tinyprocmail-mode-all-buffers) "tinyprocmail" "\
1574 Call `turn-on-tinyprocmail-mode-all-buffers' with parameter `off'. VERB." t nil)
1575
1576 (autoload (quote turn-on-tinyprocmail-mode-all-buffers) "tinyprocmail" "\
1577 Turn on or OFF function `tinyprocmail-mode' for all procmail buffers. VERB.
1578 Procmail files start with `rc.' or end to `.rc' and file content
1579 must match `^:0'." t nil)
1580
1581 ;;;***
1582 \f
1583 ;;;### (autoloads (tinyreplace-latex-math-replace tinyreplace-latex-blk-replace
1584 ;;;;;;  tinyreplace-replace-forward tinyreplace-replace-region tinyreplace-replace-over-files-compile-buffer
1585 ;;;;;;  tinyreplace-symmetry-toggle tinyreplace-define-keys-compile-map
1586 ;;;;;;  tinyreplace-menu) "tinyreplace" "tinyreplace.el" (15382 22904))
1587 ;;; Generated autoloads from tinyreplace.el
1588
1589 (autoload (quote tinyreplace-menu) "tinyreplace" "\
1590 Run `tinyreplace-:menu'." t nil)
1591
1592 (autoload (quote tinyreplace-define-keys-compile-map) "tinyreplace" "\
1593 Define key bindings." t nil)
1594
1595 (autoload (quote tinyreplace-symmetry-toggle) "tinyreplace" "\
1596 Toggle variable` tinyreplace-:symmetry' with ARG. VERB." t nil)
1597
1598 (autoload (quote tinyreplace-replace-over-files-compile-buffer) "tinyreplace" "\
1599 Read all files forward in buffer that is in compile buffer format.
1600 Perform replace over the found files. Checks Out files that are
1601 RCS controlled if necessary.
1602
1603 Line format:
1604
1605   /DIR/DIR/FILE: matched text
1606
1607 Input:
1608
1609   See function `tinyreplace-replace-1'
1610   BEG END STR1 STR2 &OPTIONAL FUNC VERB" t nil)
1611
1612 (autoload (quote tinyreplace-replace-region) "tinyreplace" "\
1613 In region BEG END, find STR1 and replace with STR2." t nil)
1614
1615 (autoload (quote tinyreplace-replace-forward) "tinyreplace" "\
1616 Find STR1 and replace with STR2 from current point forward.
1617 See source code of function `tinyreplace-args-keymap-create' what key bindings
1618 you can use. Normally C - l yanks, and \"\\\" key deletes line." t nil)
1619
1620 (autoload (quote tinyreplace-latex-blk-replace) "tinyreplace" "\
1621 Select latex block areas for replace.
1622
1623 Input:
1624
1625  STR1 STR2      Find and replace with.
1626  BLK            Block delimiter to find
1627  BEG-RE END-RE  Region bound regexps." t nil)
1628
1629 (autoload (quote tinyreplace-latex-math-replace) "tinyreplace" "\
1630 Find STR1 and replace with STR2 inside latex math blocks." t nil)
1631
1632 ;;;***
1633 \f
1634 ;;;### (autoloads (tinyrmail-rmail-summary-by-labels-and) "tinyrmail"
1635 ;;;;;;  "tinyrmail.el" (15378 27676))
1636 ;;; Generated autoloads from tinyrmail.el
1637  (autoload 'tinyrmail-version "tinyrmail" "Display commentary." t)
1638  (autoload 'tinyrmail-install-files "tinyrmail" t t)
1639
1640 (autoload (quote tinyrmail-rmail-summary-by-labels-and) "tinyrmail" "\
1641 Display a summary of all messages with one or more LABELS.
1642 LABELS should be a string containing the desired labels, separated by commas.
1643 This summary is prduced by _ANDING_ the labels." t nil)
1644
1645 ;;;***
1646 \f
1647 ;;;### (autoloads (tinyscroll-control tinyscroll-list tinyscroll-timer-process-control)
1648 ;;;;;;  "tinyscroll" "tinyscroll.el" (15411 18598))
1649 ;;; Generated autoloads from tinyscroll.el
1650  (autoload 'tinyscroll-version "tinyscroll" "Commentary." t)
1651
1652 (autoload (quote tinyscroll-timer-process-control) "tinyscroll" "\
1653 Keep the auto scroll process and timer process alive.
1654 Optionally DELETE auto scroll process. VERB." t nil)
1655
1656 (autoload (quote tinyscroll-list) "tinyscroll" "\
1657 Show list of active auto scroll buffers.
1658 Buffers are listed inecho-area if they fit there, otherwise in separate buffer.
1659
1660 If optional PRINT flag is non-nil, always generate report to temporary buffer.
1661 If list if empty, do nothing.
1662
1663 Return:
1664
1665  t      report generated to temporary buffer
1666  nil    no report" t nil)
1667
1668 (autoload (quote tinyscroll-control) "tinyscroll" "\
1669 Turn on auto scroll on/off for current buffer.
1670 If this command is called from `tinyscroll-:tmp-buffer' then the current
1671 word in the line is read and offered for default buffer name.
1672
1673 Input:
1674
1675   BUFFER-OR-POINTER     buffer to scroll
1676   OFF                   flag, prefix arg; is non-nil turn scrolling off
1677   VERB                  flag, allow verbose messages." t nil)
1678
1679 ;;;***
1680 \f
1681 ;;;### (autoloads (tinysearch-search-word-backward tinysearch-search-word-forward
1682 ;;;;;;  ) "tinysearch" "tinysearch.el"
1683 ;;;;;;  (15382 30960))
1684 ;;; Generated autoloads from tinysearch.el
1685
1686 (autoload (quote tinysearch-search-word-forward) "tinysearch" "\
1687 Search word at point forward." t nil)
1688
1689 (autoload (quote tinysearch-search-word-backward) "tinysearch" "\
1690 Search word at point backward." t nil)
1691
1692 ;;;***
1693 \f
1694 ;;;### (autoloads (tinytab-return-key-mode tinytab-tab-del-key tinytab-tab-key)
1695 ;;;;;;  "tinytab" "tinytab.el" (15378 27676))
1696 ;;; Generated autoloads from tinytab.el
1697  (autoload 'tinytab-mode                        "tinytab" "" t)
1698  (autoload 'turn-on-tinytab-mode                "tinytab" "" t)
1699  (autoload 'turn-off-tinytab-mode               "tinytab" "" t)
1700  (autoload 'tinytab-commentary          "tinytab" "" t)
1701  (autoload 'tinytab-version             "tinytab" "" t)
1702
1703 (autoload (quote tinytab-tab-key) "tinytab" "\
1704 Main function for TAB key. See variable `tinytab-:tab-insert-hook'." t nil)
1705
1706 (autoload (quote tinytab-tab-del-key) "tinytab" "\
1707 Main function for TAB key. See variable `tinytab-:tab-delete-hook'." t nil)
1708
1709 (autoload (quote tinytab-return-key-mode) "tinytab" "\
1710 Toggle auto indent MODE / regular newline mode. VERB." t nil)
1711
1712 ;;;***
1713 \f
1714 ;;;### (autoloads (tinytag-post-command tinytag-main-mouse tinytag-main
1715 ;;;;;;  tinytag-install-sample-database-c tinytag-install-sample-database-java
1716 ;;;;;;  tinytag-install) "tinytag" "tinytag.el" (15411 18378))
1717 ;;; Generated autoloads from tinytag.el
1718
1719 (autoload (quote tinytag-install) "tinytag" "\
1720 Install package. Optionally UNINSTALL." t nil)
1721
1722 (autoload (quote tinytag-install-sample-database-java) "tinytag" "\
1723 Install Java database from Sub JDK documentation." t nil)
1724
1725 (autoload (quote tinytag-install-sample-database-c) "tinytag" "\
1726 Install c/C++ database from file tintytag.el." t nil)
1727
1728 (autoload (quote tinytag-main) "tinytag" "\
1729 Run `tinytag-:try-hook' until some of the functions return non-nil." t nil)
1730
1731 (autoload (quote tinytag-main-mouse) "tinytag" "\
1732 See `tinytag-main'. Function is called with mouse EVENT." t nil)
1733
1734 (autoload (quote tinytag-post-command) "tinytag" "\
1735 Activates only if `tinytag-:set-database-hook' wakes up.
1736 Show the database definition for the current word under point.
1737
1738 References:
1739
1740   `tinytag-:noerror'
1741   `tinytag-:post-command-hook-wakeup'
1742   `tinytag-:set-database-hook'" nil nil)
1743
1744 ;;;***
1745 \f
1746 ;;;### (autoloads (turn-on-tinytf-mode-maybe tinytf-mode-define-f-keys)
1747 ;;;;;;  "tinytf" "tinytf.el" (15411 20766))
1748 ;;; Generated autoloads from tinytf.el
1749  (autoload 'tinytf-version "tinytf" "Display commentary." t)
1750  (autoload 'tinytf-install-mode     "tinytf" "" t)
1751  (autoload 'tinytf-mode             "tinytf" "" t)
1752  (autoload 'turn-on-tinytf-mode     "tinytf" "" t)
1753  (autoload 'turn-off-tinytf-mode            "tinytf" "" t)
1754  (autoload 'tinytf-commentary         "tinytf" "" t)
1755
1756 (autoload (quote tinytf-mode-define-f-keys) "tinytf" "\
1757 Define default F key to `tinytf-:mode-map'." t nil)
1758  (autoload 'tinytf-install-files "tinytf" t t)
1759
1760 (autoload (quote turn-on-tinytf-mode-maybe) "tinytf" "\
1761 Turn on mode function `tinytf-mode' if TOC entry is found." nil nil)
1762
1763 ;;;***
1764 \f
1765 ;;;### (autoloads (tinyurl-install tinyurl-mode-1 turn-on-tinyurl-mode-mail
1766 ;;;;;;  turn-on-tinyurl-mode-1-maybe turn-on-turn-off-tinyurl-mode-1-maybe)
1767 ;;;;;;  "tinyurl" "tinyurl.el" (15380 59900))
1768 ;;; Generated autoloads from tinyurl.el
1769  (autoload 'tinyurl-version "tinyurl" "Display commentary." t)
1770  (autoload 'tinyurl-debug-toggle "tinyurl" "" t)
1771  (autoload 'tinyurl-mode                  "tinyurl" "" t)
1772  (autoload 'turn-on-tinyurl-mode    "tinyurl" "" t)
1773  (autoload 'turn-off-tinyurl-mode   "tinyurl" "" t)
1774  (autoload 'tinyurl-commentary      "tinyurl" "" t)
1775
1776 (autoload (quote turn-on-turn-off-tinyurl-mode-1-maybe) "tinyurl" "\
1777 Activate or Deactivate `tinyurl-mode-1' in current buffer.
1778 Try to find ftp, http or email is found.
1779 The value of `tinyurl-:exclude-function' is consulted first." nil nil)
1780
1781 (autoload (quote turn-on-tinyurl-mode-1-maybe) "tinyurl" "\
1782 Activate `tinyurl-mode-1' in current buffer if ftp, http or email is found.
1783 This function is meant to be used in eg. Article display
1784 hooks in Mail Agents.
1785
1786 References:
1787
1788   The value of `tinyurl-:exclude-function' is consulted first." nil nil)
1789
1790 (autoload (quote turn-on-tinyurl-mode-mail) "tinyurl" "\
1791 Turn on  `tinyurl-mode-1' and make `tinyurl-:mouse-yank-at-point' local." nil nil)
1792
1793 (autoload (quote tinyurl-mode-1) "tinyurl" "\
1794 Turn mode on or off with mode ARG for current buffer only.
1795 If you want to turn on or off globally, use function `tinyurl-mode'." t nil)
1796
1797 (autoload (quote tinyurl-install) "tinyurl" "\
1798 Install or `UNINSTALL package." t nil)
1799
1800 ;;;***
1801 \f
1802 ;;;### (autoloads nil "tinyvc" "tinyvc.el" (15378 27676))
1803 ;;; Generated autoloads from tinyvc.el
1804  (autoload 'tinyvc-mode        "tinyvc" "" t)
1805  (autoload 'turn-on-tinyvc-mode  "tinyvc" "" t)
1806  (autoload 'turn-off-tinyvc-mode "tinyvc" "" t)
1807  (autoload 'tinyvc-commentary    "tinyvc" "" t)
1808  (autoload 'tinyvc-version       "tinyvc" "" t)
1809
1810 ;;;***
1811 \f
1812 ;;;### (autoloads (tinyxreg-jump-to-register-mouse tinyxreg-jump-to-register
1813 ;;;;;;  tinyxreg-remove-register tinyxreg-point-to-register tinyxreg-point-to-register-mouse
1814 ;;;;;;  tinyxreg-trash tinyxreg-remove-reg) "tinyxreg" "tinyxreg.el"
1815 ;;;;;;  (15378 27676))
1816 ;;; Generated autoloads from tinyxreg.el
1817  (autoload 'tinyxreg-version "tinyxreg" "Display commentary." t)
1818
1819 (autoload (quote tinyxreg-remove-reg) "tinyxreg" "\
1820 Remove register CHAR from stored window and point lists.
1821 ARG suggests looking in window list." t nil)
1822
1823 (autoload (quote tinyxreg-trash) "tinyxreg" "\
1824 Empties both window and point caches." t nil)
1825
1826 (autoload (quote tinyxreg-point-to-register-mouse) "tinyxreg" "\
1827 Call `tinyxreg-point-to-register' using mouse EVENT." t nil)
1828
1829 (autoload (quote tinyxreg-point-to-register) "tinyxreg" "\
1830 Store point to CHAR and to X-popup list.
1831 With prefix ARG, store current frame configuration. VERBOSE enables
1832 message printing.
1833
1834 Use \\[tinyxreg-point-to-register]  to go to that location or restore the
1835 configuration." t nil)
1836
1837 (autoload (quote tinyxreg-remove-register) "tinyxreg" "\
1838 Remove register from popup list.
1839 See `tinyxreg-jump-to-register-mouse' for more." t nil)
1840
1841 (autoload (quote tinyxreg-jump-to-register) "tinyxreg" "\
1842 Call `tinyxreg-jump-to-register-mouse' with REMOVE." t nil)
1843
1844 (autoload (quote tinyxreg-jump-to-register-mouse) "tinyxreg" "\
1845 Displays list of registers using mouse EVENT.
1846 Restore register or optionally REMOVE register from X-list.
1847 Input:
1848
1849   EVENT     mouse event
1850   REMOVE    flag, if non-nil, remove register.
1851   VERB      flag, Allow verbose messages." t nil)
1852
1853 ;;;***