-
Notifications
You must be signed in to change notification settings - Fork 0
/
loaddefs.el
602 lines (432 loc) · 20.4 KB
/
loaddefs.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
;;; loaddefs.el --- automatically extracted autoloads
;;
;;; Code:
;;;### (autoloads (color-theme-blackboard) "blackboard" "elpa-to-submit/blackboard.el"
;;;;;; (20183 9560))
;;; Generated autoloads from elpa-to-submit/blackboard.el
(autoload 'color-theme-blackboard "blackboard" "\
Color theme by JD Huntington, based off the TextMate Blackboard theme, created 2008-11-27
\(fn)" t nil)
;;;***
;;;### (autoloads (cheat) "cheat" "elpa-to-submit/cheat.el" (20183
;;;;;; 9560))
;;; Generated autoloads from elpa-to-submit/cheat.el
(autoload 'cheat "cheat" "\
Show the specified cheat sheet.
If SILENT is non-nil then do not print any output, but return it
as a string instead.
\(fn NAME &optional SILENT)" t nil)
;;;***
;;;### (autoloads (cperl-perldoc-at-point cperl-perldoc cperl-mode)
;;;;;; "cperl-mode" "elpa-to-submit/cperl-mode.el" (20183 9560))
;;; Generated autoloads from elpa-to-submit/cperl-mode.el
(fset 'perl-mode 'cperl-mode)
(autoload 'cperl-mode "cperl-mode" "\
Major mode for editing Perl code.
Expression and list commands understand all C brackets.
Tab indents for Perl code.
Paragraphs are separated by blank lines only.
Delete converts tabs to spaces as it moves back.
Various characters in Perl almost always come in pairs: {}, (), [],
sometimes <>. When the user types the first, she gets the second as
well, with optional special formatting done on {}. (Disabled by
default.) You can always quote (with \\[quoted-insert]) the left
\"paren\" to avoid the expansion. The processing of < is special,
since most the time you mean \"less\". CPerl mode tries to guess
whether you want to type pair <>, and inserts is if it
appropriate. You can set `cperl-electric-parens-string' to the string that
contains the parenths from the above list you want to be electrical.
Electricity of parenths is controlled by `cperl-electric-parens'.
You may also set `cperl-electric-parens-mark' to have electric parens
look for active mark and \"embrace\" a region if possible.'
CPerl mode provides expansion of the Perl control constructs:
if, else, elsif, unless, while, until, continue, do,
for, foreach, formy and foreachmy.
and POD directives (Disabled by default, see `cperl-electric-keywords'.)
The user types the keyword immediately followed by a space, which
causes the construct to be expanded, and the point is positioned where
she is most likely to want to be. eg. when the user types a space
following \"if\" the following appears in the buffer: if () { or if ()
} { } and the cursor is between the parentheses. The user can then
type some boolean expression within the parens. Having done that,
typing \\[cperl-linefeed] places you - appropriately indented - on a
new line between the braces (if you typed \\[cperl-linefeed] in a POD
directive line, then appropriate number of new lines is inserted).
If CPerl decides that you want to insert \"English\" style construct like
bite if angry;
it will not do any expansion. See also help on variable
`cperl-extra-newline-before-brace'. (Note that one can switch the
help message on expansion by setting `cperl-message-electric-keyword'
to nil.)
\\[cperl-linefeed] is a convenience replacement for typing carriage
return. It places you in the next line with proper indentation, or if
you type it inside the inline block of control construct, like
foreach (@lines) {print; print}
and you are on a boundary of a statement inside braces, it will
transform the construct into a multiline and will place you into an
appropriately indented blank line. If you need a usual
`newline-and-indent' behaviour, it is on \\[newline-and-indent],
see documentation on `cperl-electric-linefeed'.
Use \\[cperl-invert-if-unless] to change a construction of the form
if (A) { B }
into
B if A;
\\{cperl-mode-map}
Setting the variable `cperl-font-lock' to t switches on font-lock-mode
\(even with older Emacsen), `cperl-electric-lbrace-space' to t switches
on electric space between $ and {, `cperl-electric-parens-string' is
the string that contains parentheses that should be electric in CPerl
\(see also `cperl-electric-parens-mark' and `cperl-electric-parens'),
setting `cperl-electric-keywords' enables electric expansion of
control structures in CPerl. `cperl-electric-linefeed' governs which
one of two linefeed behavior is preferable. You can enable all these
options simultaneously (recommended mode of use) by setting
`cperl-hairy' to t. In this case you can switch separate options off
by setting them to `null'. Note that one may undo the extra
whitespace inserted by semis and braces in `auto-newline'-mode by
consequent \\[cperl-electric-backspace].
If your site has perl5 documentation in info format, you can use commands
\\[cperl-info-on-current-command] and \\[cperl-info-on-command] to access it.
These keys run commands `cperl-info-on-current-command' and
`cperl-info-on-command', which one is which is controlled by variable
`cperl-info-on-command-no-prompt' and `cperl-clobber-lisp-bindings'
\(in turn affected by `cperl-hairy').
Even if you have no info-format documentation, short one-liner-style
help is available on \\[cperl-get-help], and one can run perldoc or
man via menu.
It is possible to show this help automatically after some idle time.
This is regulated by variable `cperl-lazy-help-time'. Default with
`cperl-hairy' (if the value of `cperl-lazy-help-time' is nil) is 5
secs idle time . It is also possible to switch this on/off from the
menu, or via \\[cperl-toggle-autohelp]. Requires `run-with-idle-timer'.
Use \\[cperl-lineup] to vertically lineup some construction - put the
beginning of the region at the start of construction, and make region
span the needed amount of lines.
Variables `cperl-pod-here-scan', `cperl-pod-here-fontify',
`cperl-pod-face', `cperl-pod-head-face' control processing of POD and
here-docs sections. With capable Emaxen results of scan are used
for indentation too, otherwise they are used for highlighting only.
Variables controlling indentation style:
`cperl-tab-always-indent'
Non-nil means TAB in CPerl mode should always reindent the current line,
regardless of where in the line point is when the TAB command is used.
`cperl-indent-left-aligned-comments'
Non-nil means that the comment starting in leftmost column should indent.
`cperl-auto-newline'
Non-nil means automatically newline before and after braces,
and after colons and semicolons, inserted in Perl code. The following
\\[cperl-electric-backspace] will remove the inserted whitespace.
Insertion after colons requires both this variable and
`cperl-auto-newline-after-colon' set.
`cperl-auto-newline-after-colon'
Non-nil means automatically newline even after colons.
Subject to `cperl-auto-newline' setting.
`cperl-indent-level'
Indentation of Perl statements within surrounding block.
The surrounding block's indentation is the indentation
of the line on which the open-brace appears.
`cperl-continued-statement-offset'
Extra indentation given to a substatement, such as the
then-clause of an if, or body of a while, or just a statement continuation.
`cperl-continued-brace-offset'
Extra indentation given to a brace that starts a substatement.
This is in addition to `cperl-continued-statement-offset'.
`cperl-brace-offset'
Extra indentation for line if it starts with an open brace.
`cperl-brace-imaginary-offset'
An open brace following other text is treated as if it the line started
this far to the right of the actual line indentation.
`cperl-label-offset'
Extra indentation for line that is a label.
`cperl-min-label-indent'
Minimal indentation for line that is a label.
Settings for classic indent-styles: K&R BSD=C++ GNU PerlStyle=Whitesmith
`cperl-indent-level' 5 4 2 4
`cperl-brace-offset' 0 0 0 0
`cperl-continued-brace-offset' -5 -4 0 0
`cperl-label-offset' -5 -4 -2 -4
`cperl-continued-statement-offset' 5 4 2 4
CPerl knows several indentation styles, and may bulk set the
corresponding variables. Use \\[cperl-set-style] to do this. Use
\\[cperl-set-style-back] to restore the memorized preexisting values
\(both available from menu). See examples in `cperl-style-examples'.
Part of the indentation style is how different parts of if/elsif/else
statements are broken into lines; in CPerl, this is reflected on how
templates for these constructs are created (controlled by
`cperl-extra-newline-before-brace'), and how reflow-logic should treat
\"continuation\" blocks of else/elsif/continue, controlled by the same
variable, and by `cperl-extra-newline-before-brace-multiline',
`cperl-merge-trailing-else', `cperl-indent-region-fix-constructs'.
If `cperl-indent-level' is 0, the statement after opening brace in
column 0 is indented on
`cperl-brace-offset'+`cperl-continued-statement-offset'.
Turning on CPerl mode calls the hooks in the variable `cperl-mode-hook'
with no args.
DO NOT FORGET to read micro-docs (available from `Perl' menu,
or as help on variables `cperl-tips', `cperl-problems',
`cperl-non-problems', `cperl-praise', `cperl-speed',
`cperl-tips-faces').
\(fn)" t nil)
(autoload 'cperl-perldoc "cperl-mode" "\
Run `perldoc' on WORD.
\(fn WORD)" t nil)
(autoload 'cperl-perldoc-at-point "cperl-mode" "\
Run a `perldoc' on the word around point.
\(fn)" t nil)
(add-to-list 'auto-mode-alist '("\\.\\([pP][LlMm]\\|al\\)\\'" . perl-mode))
(add-to-list 'interpreter-mode-alist '("perl" . perl-mode))
;;;***
;;;### (autoloads (erc-highlight-nicknames) "erc-highlight-nicknames"
;;;;;; "elpa-to-submit/erc-highlight-nicknames.el" (20183 9560))
;;; Generated autoloads from elpa-to-submit/erc-highlight-nicknames.el
(autoload 'erc-highlight-nicknames "erc-highlight-nicknames" "\
Searches for nicknames and highlights them. Uses the first
twelve digits of the MD5 message digest of the nickname as
color (#rrrrggggbbbb).
\(fn)" nil nil)
;;;***
;;;### (autoloads (espresso-mode) "espresso" "elpa-to-submit/espresso.el"
;;;;;; (20183 9560))
;;; Generated autoloads from elpa-to-submit/espresso.el
(autoload 'espresso-mode "espresso" "\
Major mode for editing JavaScript source text.
Key bindings:
\\{espresso-mode-map}
\(fn)" t nil)
;;;***
;;;### (autoloads (htmlize-many-files-dired htmlize-many-files htmlize-file
;;;;;; htmlize-region htmlize-buffer) "htmlize" "elpa-to-submit/htmlize.el"
;;;;;; (20183 9560))
;;; Generated autoloads from elpa-to-submit/htmlize.el
(autoload 'htmlize-buffer "htmlize" "\
Convert BUFFER to HTML, preserving colors and decorations.
The generated HTML is available in a new buffer, which is returned.
When invoked interactively, the new buffer is selected in the current
window. The title of the generated document will be set to the buffer's
file name or, if that's not available, to the buffer's name.
Note that htmlize doesn't fontify your buffers, it only uses the
decorations that are already present. If you don't set up font-lock or
something else to fontify your buffers, the resulting HTML will be
plain. Likewise, if you don't like the choice of colors, fix the mode
that created them, or simply alter the faces it uses.
\(fn &optional BUFFER)" t nil)
(autoload 'htmlize-region "htmlize" "\
Convert the region to HTML, preserving colors and decorations.
See `htmlize-buffer' for details.
\(fn BEG END)" t nil)
(autoload 'htmlize-file "htmlize" "\
Load FILE, fontify it, convert it to HTML, and save the result.
Contents of FILE are inserted into a temporary buffer, whose major mode
is set with `normal-mode' as appropriate for the file type. The buffer
is subsequently fontified with `font-lock' and converted to HTML. Note
that, unlike `htmlize-buffer', this function explicitly turns on
font-lock. If a form of highlighting other than font-lock is desired,
please use `htmlize-buffer' directly on buffers so highlighted.
Buffers currently visiting FILE are unaffected by this function. The
function does not change current buffer or move the point.
If TARGET is specified and names a directory, the resulting file will be
saved there instead of to FILE's directory. If TARGET is specified and
does not name a directory, it will be used as output file name.
\(fn FILE &optional TARGET)" t nil)
(autoload 'htmlize-many-files "htmlize" "\
Convert FILES to HTML and save the corresponding HTML versions.
FILES should be a list of file names to convert. This function calls
`htmlize-file' on each file; see that function for details. When
invoked interactively, you are prompted for a list of files to convert,
terminated with RET.
If TARGET-DIRECTORY is specified, the HTML files will be saved to that
directory. Normally, each HTML file is saved to the directory of the
corresponding source file.
\(fn FILES &optional TARGET-DIRECTORY)" t nil)
(autoload 'htmlize-many-files-dired "htmlize" "\
HTMLize dired-marked files.
\(fn ARG &optional TARGET-DIRECTORY)" t nil)
;;;***
;;;### (autoloads (javadoc-lookup) "javadoc-help" "elpa-to-submit/javadoc-help.el"
;;;;;; (20183 9560))
;;; Generated autoloads from elpa-to-submit/javadoc-help.el
(autoload 'javadoc-lookup "javadoc-help" "\
Look up Java class in Javadoc.
\(fn)" t nil)
;;;***
;;;### (autoloads (markdown-mode) "markdown-mode" "elpa-to-submit/markdown-mode.el"
;;;;;; (20183 9560))
;;; Generated autoloads from elpa-to-submit/markdown-mode.el
(autoload 'markdown-mode "markdown-mode" "\
Major mode for editing Markdown files.
\(fn)" t nil)
(add-to-list 'auto-mode-alist '("\\.markdown$" . markdown-mode))
(add-to-list 'auto-mode-alist '("\\.md$" . markdown-mode))
;;;***
;;;### (autoloads (moz-minor-mode) "moz" "elpa-to-submit/moz.el"
;;;;;; (20183 9560))
;;; Generated autoloads from elpa-to-submit/moz.el
(autoload 'moz-minor-mode "moz" "\
Toggle Mozilla mode.
With no argument, this command toggles the mode.
Non-null prefix argument turns on the mode.
Null prefix argument turns off the mode.
When Mozilla mode is enabled, some commands become available to
send current code area (as understood by c-mark-function) or
region or buffer to an inferior mozilla process (which will be
started as needed).
\(fn &optional ARG)" t nil)
(eval-after-load 'js2-mode '(add-hook 'js2-mode-hook 'moz-minor-mode))
;;;***
;;;### (autoloads (oddmuse-kill-url oddmuse-browse-this-page oddmuse-browse-page
;;;;;; emacswiki-post oddmuse-insert-pagename oddmuse-revert oddmuse-post
;;;;;; oddmuse-follow oddmuse-edit oddmuse-toggle-minor) "oddmuse"
;;;;;; "elpa-to-submit/oddmuse.el" (20183 9560))
;;; Generated autoloads from elpa-to-submit/oddmuse.el
(autoload 'oddmuse-toggle-minor "oddmuse" "\
Toggle minor mode state.
\(fn &optional ARG)" t nil)
(autoload 'oddmuse-edit "oddmuse" "\
Edit a page on a wiki.
WIKI is the name of the wiki as defined in `oddmuse-wikis',
PAGENAME is the pagename of the page you want to edit.
Use a prefix argument to force a reload of the page.
\(fn WIKI PAGENAME)" t nil)
(autoload 'oddmuse-follow "oddmuse" "\
Figure out what page we need to visit
and call `oddmuse-edit' on it.
\(fn ARG)" t nil)
(autoload 'oddmuse-post "oddmuse" "\
Post the current buffer to the current wiki.
The current wiki is taken from `oddmuse-wiki'.
\(fn SUMMARY)" t nil)
(autoload 'oddmuse-revert "oddmuse" "\
Revert this oddmuse page.
\(fn)" t nil)
(autoload 'oddmuse-insert-pagename "oddmuse" "\
Insert a PAGENAME of current wiki with completion.
\(fn PAGENAME)" t nil)
(autoload 'emacswiki-post "oddmuse" "\
Post the current buffer to the EmacsWiki.
If this command is invoked interactively: with prefix argument, prompts pagename,
otherwise set pagename as basename of `buffer-file-name'.
This command is intended to post current EmacsLisp program easily.
\(fn &optional PAGENAME SUMMARY)" t nil)
(autoload 'oddmuse-browse-page "oddmuse" "\
Ask a WWW browser to load an oddmuse page.
WIKI is the name of the wiki as defined in `oddmuse-wikis',
PAGENAME is the pagename of the page you want to browse.
\(fn WIKI PAGENAME)" t nil)
(autoload 'oddmuse-browse-this-page "oddmuse" "\
Ask a WWW browser to load current oddmuse page.
\(fn)" t nil)
(autoload 'oddmuse-kill-url "oddmuse" "\
Make the URL of current oddmuse page the latest kill in the kill ring.
\(fn)" t nil)
;;;***
;;;### (autoloads (paredit-mode) "paredit" "elpa-to-submit/paredit.el"
;;;;;; (20183 9560))
;;; Generated autoloads from elpa-to-submit/paredit.el
(autoload 'paredit-mode "paredit" "\
Minor mode for pseudo-structurally editing Lisp code.
With a prefix argument, enable Paredit Mode even if there are
imbalanced parentheses in the buffer.
Paredit behaves badly if parentheses are imbalanced, so exercise
caution when forcing Paredit Mode to be enabled, and consider
fixing imbalanced parentheses instead.
\\<paredit-mode-map>
\(fn &optional ARG)" t nil)
;;;***
;;;### (autoloads (pcomplete/rake) "pcmpl-rake" "elpa-to-submit/pcmpl-rake.el"
;;;;;; (20183 9560))
;;; Generated autoloads from elpa-to-submit/pcmpl-rake.el
(autoload 'pcomplete/rake "pcmpl-rake" "\
Completion rules for the `ssh' command.
\(fn)" nil nil)
;;;***
;;;### (autoloads (perl-find-file perldoc) "perl-find-library" "elpa-to-submit/perl-find-library.el"
;;;;;; (20183 9560))
;;; Generated autoloads from elpa-to-submit/perl-find-library.el
(autoload 'perldoc "perl-find-library" "\
Invoke `cperl-perldoc' on LIBRARY, but do completion using *PERL-LIBRARIES*
when run interactively
\(fn LIBRARY)" t nil)
(autoload 'perl-find-file "perl-find-library" "\
Find a perl library by module name
\(fn LIBRARY)" t nil)
;;;***
;;;### (autoloads (pod-mode) "pod-mode" "elpa-to-submit/pod-mode.el"
;;;;;; (20183 9560))
;;; Generated autoloads from elpa-to-submit/pod-mode.el
(autoload 'pod-mode "pod-mode" "\
Major mode for editing POD files (Plain Old Documentation for Perl).
\(fn)" t nil)
;;;***
;;;### (autoloads (ri) "ri" "elpa-to-submit/ri.el" (20183 9560))
;;; Generated autoloads from elpa-to-submit/ri.el
(autoload 'ri "ri" "\
Look up Ruby documentation.
\(fn &optional RI-DOCUMENTED)" t nil)
;;;***
;;;### (autoloads (ruby-electric-mode) "ruby-electric" "elpa-to-submit/ruby-electric.el"
;;;;;; (20183 9560))
;;; Generated autoloads from elpa-to-submit/ruby-electric.el
(autoload 'ruby-electric-mode "ruby-electric" "\
Toggle Ruby Electric minor mode.
With no argument, this command toggles the mode. Non-null prefix
argument turns on the mode. Null prefix argument turns off the
mode.
When Ruby Electric mode is enabled, an indented 'end' is
heuristicaly inserted whenever typing a word like 'module',
'class', 'def', 'if', 'unless', 'case', 'until', 'for', 'begin',
'do'. Simple, double and back quotes as well as braces are paired
auto-magically. Expansion does not occur inside comments and
strings. Note that you must have Font Lock enabled.
\(fn &optional ARG)" t nil)
;;;***
;;;### (autoloads (scpaste-region scpaste) "scpaste" "elpa-to-submit/scpaste.el"
;;;;;; (20183 9560))
;;; Generated autoloads from elpa-to-submit/scpaste.el
(autoload 'scpaste "scpaste" "\
Paste the current buffer via `scp' to `scpaste-http-destination'.
\(fn ORIGINAL-NAME)" t nil)
(autoload 'scpaste-region "scpaste" "\
Paste the current region via `scpaste'.
\(fn NAME)" t nil)
;;;***
;;;### (autoloads (textile-mode) "textile-mode" "elpa-to-submit/textile-mode.el"
;;;;;; (20183 9560))
;;; Generated autoloads from elpa-to-submit/textile-mode.el
(autoload 'textile-mode "textile-mode" "\
A major mode for editing textile files.
\(fn)" t nil)
(add-to-list 'auto-mode-alist '("\\.textile\\'" . textile-mode))
;;;***
;;;### (autoloads (tt-mode) "tt-mode" "elpa-to-submit/tt-mode.el"
;;;;;; (20183 9560))
;;; Generated autoloads from elpa-to-submit/tt-mode.el
(autoload 'tt-mode "tt-mode" "\
Major mode for editing Template Toolkit files
\(fn)" t nil)
;;;***
;;;### (autoloads (color-theme-twilight) "twilight" "elpa-to-submit/twilight.el"
;;;;;; (20183 9560))
;;; Generated autoloads from elpa-to-submit/twilight.el
(autoload 'color-theme-twilight "twilight" "\
Color theme by Marcus Crafter, based off the TextMate Twilight theme, created 2008-04-18
\(fn)" t nil)
;;;***
;;;### (autoloads (color-theme-zenburn) "zenburn" "elpa-to-submit/zenburn.el"
;;;;;; (20183 9560))
;;; Generated autoloads from elpa-to-submit/zenburn.el
(autoload 'color-theme-zenburn "zenburn" "\
Just some alien fruit salad to keep you in the zone.
\(fn)" t nil)
(defalias 'zenburn #'color-theme-zenburn)
;;;***
;;;### (autoloads nil nil ("elpa-to-submit/color-theme.el" "elpa-to-submit/eshell-vc.el"
;;;;;; "elpa-to-submit/notify.el") (20183 9585 558388))
;;;***
(provide 'loaddefs)
;; Local Variables:
;; version-control: never
;; no-byte-compile: t
;; no-update-autoloads: t
;; coding: utf-8
;; End:
;;; loaddefs.el ends here