-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaph-autoloads.el
executable file
·1078 lines (731 loc) · 32.7 KB
/
aph-autoloads.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
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
;;; aph-autoloads.el --- automatically extracted autoloads
;;
;;; Code:
;;;### (autoloads nil "aph-electric" "aph-electric.el" (22794 10099
;;;;;; 0 0))
;;; Generated autoloads from aph-electric.el
(autoload 'aph/electric-indent-local-mode:off "aph-electric" "\
Turn off `electric-indent-mode' only in this buffer.
\(fn)" t nil)
;;;***
;;;### (autoloads nil "aph-forms" "aph-forms.el" (22794 10099 0 0))
;;; Generated autoloads from aph-forms.el
(autoload 'aph/forms-create-from-template "aph-forms" "\
Make a new `forms-mode' database based on TEMPLATE.
Here, TEMPLATE is the path to an existing `forms-mode' control
file. A new control file named NAME.ctrl is created in DIR, as
well as an empty database file NAME.db. The resulting database
uses `load-file' to inherit all behavior except the value of
`forms-file' from TEMPLATE.
After the file is created, open it in `forms-mode'.
\(fn TEMPLATE DIR NAME)" t nil)
;;;***
;;;### (autoloads nil "aph-helm" "aph-helm.el" (22794 10099 0 0))
;;; Generated autoloads from aph-helm.el
(autoload 'aph/helm-semantic-or-imenu "aph-helm" "\
As `helm-semantic-or-imenu', but always show all candidates.
If the symbol at point is a valid candidate, go ahead and select
it, but still show all the other candidates.
Also, never jump directly to the definition for symbol at
point (overriding `helm-imenu-execute-action-at-once-if-one'),
even if there's only one candidate in the buffer.
\(fn ARG)" t nil)
(autoload 'aph/helm-browse-project "aph-helm" "\
As `helm-browse-project', but truncate lines.
\(fn ARG)" t nil)
(autoload 'aph/helm-projectile "aph-helm" "\
As `helm-projectile', but truncate lines.
\(fn &optional ARG)" t nil)
(autoload 'aph/helm-projectile-grep "aph-helm" "\
As `helm-projectile-grep', but suspend updates initially.
\(fn &optional DIR)" t nil)
;;;***
;;;### (autoloads nil "aph-ielm" "aph-ielm.el" (22794 10099 0 0))
;;; Generated autoloads from aph-ielm.el
(autoload 'aph/ielm-copy-last-output "aph-ielm" "\
Copy the last output produced by `ielm' to the kill ring.
With argument N > 0, instead copy the Nth last output.
With argument N < 0, copy the Nth output since last clear.
With argument N = 0, do nothing.
Return the newly copied string, or nil if nothing was
copied (e.g., if the argument is greater than the number of
uncleared outputs).
\(fn &optional ARG)" t nil)
;;;***
;;;### (autoloads nil "aph-iimage" "aph-iimage.el" (22794 10099 0
;;;;;; 0))
;;; Generated autoloads from aph-iimage.el
(autoload 'aph/iimage-refresh "aph-iimage" "\
Refresh inline images in current buffer.
\(fn)" t nil)
;;;***
;;;### (autoloads nil "aph-info" "aph-info.el" (22794 10099 0 0))
;;; Generated autoloads from aph-info.el
(autoload 'aph/info-mode-or-clone-buffer "aph-info" "\
Enter info mode or clone info buffer.
In an info buffer when no prefix argument has been supplied,
clone the buffer (as `clone-buffer'). Otherwise, enter info
mode (as `info').
\(fn PREFIX)" t nil)
(autoload 'aph/Info-final-menu-item "aph-info" "\
Go to the node of the last menu item.
This command duplicates the functionality of the 0 key in the
standalone info application.
\(fn)" t nil)
;;;***
;;;### (autoloads nil "aph-org" "aph-org.el" (22794 10099 0 0))
;;; Generated autoloads from aph-org.el
(autoload 'aph/org-goto-last-refile "aph-org" "\
Goto last Org-mode item refiled.
This has the same effect as supplying a C-u C-u prefix argument
to `org-agenda-refile'. It is intended for use globally, where a
keybinding for that function is not appropriate.
\(fn)" t nil)
;;;***
;;;### (autoloads nil "aph-org-table" "aph-org-table.el" (22794 10099
;;;;;; 0 0))
;;; Generated autoloads from aph-org-table.el
(autoload 'aph/org-table-clear-row-forward "aph-org-table" "\
Erase contents of table cells from point to end of row.
If point is not inside an Org table, signal an error.
\(fn)" t nil)
;;;***
;;;### (autoloads nil "aph-parse-time" "aph-parse-time.el" (22952
;;;;;; 30631 122141 500000))
;;; Generated autoloads from aph-parse-time.el
(autoload 'aph/parse-time-string-and-format "aph-parse-time" "\
As `format-time-string', but TIME is as `parse-time-string'.
Conceptually, this function is the composition
(format-time-string FORMAT-STRING (parse-time-string TIME) ZONE)
except the exact time format returned by `parse-time-string' is
not that expected by `format-time-string', so some additional
work is necessary.
\(fn FORMAT-STRING TIME &optional ZONE)" nil nil)
;;;***
;;;### (autoloads nil "aph-rect" "aph-rect.el" (22794 10099 0 0))
;;; Generated autoloads from aph-rect.el
(autoload 'aph/yank-rectangle-from-kill-ring "aph-rect" "\
Yank the top of kill ring as a rectangle.
Make the \"last killed rectangle\" be the top entry of the kill
ring, then yank that rectangle at point.
With \\[universal-argument] as argument, just save the top entry
of the kill ring as a rectangle, without yanking. Print a
message to that effect. When called from elisp, this message is
suppressed unless the optional argument VERBOSE is supplied.
With argument N, save the Nth most recent kill instead of the
most recent.
\(fn &optional ARG VERBOSE)" t nil)
;;;***
;;;### (autoloads nil "aph-simple" "aph-simple.el" (22794 10099 0
;;;;;; 0))
;;; Generated autoloads from aph-simple.el
(autoload 'aph/open-line "aph-simple" "\
As `open-line', with support for negative argument.
An argument of -N calls `join-line' with an argument N times.
\(fn N)" t nil)
(autoload 'aph/move-beginning-of-line "aph-simple" "\
Combine `move-beginning-of-line' and `back-to-indentation'.
Behave as `move-beginning-of-line', unless point is already at
beginning of line, in which case call `back-to-indentation'.
If ARG is supplied, then it is interpreted as in
`move-beginning-of-line' and `back-to-indentation' is not
called.
Return the new value of point.
\(fn &optional ARG)" t nil)
;;;***
;;;### (autoloads nil "aph-smartparens" "aph-smartparens.el" (22794
;;;;;; 10099 0 0))
;;; Generated autoloads from aph-smartparens.el
(autoload 'aph/sp-kill-sentence "aph-smartparens" "\
As `kill-sentence', but don't kill past end of current context.
In a string or comment, kill either to the end of sentence (as
`kill-sentence') or to the end of the string or comment,
whichever is nearer. Do not kill a closing string or comment
delimiter. Treat ARG in the same way as `kill-sentence'.
Outside of strings and comments, this should generally behave as
`kill-sentence', but no guarantees are made.
\(fn &optional ARG)" t nil)
;;;***
;;;### (autoloads nil "aph-theme" "aph-theme.el" (22794 10099 0 0))
;;; Generated autoloads from aph-theme.el
(and load-file-name (boundp 'custom-theme-load-path) (add-to-list 'custom-theme-load-path (file-name-as-directory (file-name-directory load-file-name))))
;;;***
;;;### (autoloads nil "aph-vc" "aph-vc.el" (22794 10099 0 0))
;;; Generated autoloads from aph-vc.el
(autoload 'aph/vc-delete-file "aph-vc" "\
As `vc-delete-file', but delete unregistered files.
If the command `vc-delete-file' is invoked on a file which is not
under version control, an error is signaled. This command
instead deletes the file, requesting confirmation from the user.
In all other circumstances, it behaves as `vc-delete-file'.
\(fn FILE)" t nil)
(autoload 'aph/vc-dir-delete-file "aph-vc" "\
As `vc-dir-delete-file', but delete unregistered files.
See `aph/vc-delete-file' for more details; this is just a simple
wrapper around that function for use in the `vc-dir' buffer.
\(fn)" t nil)
;;;***
;;;### (autoloads nil "browse-url-prefix" "browse-url-prefix.el"
;;;;;; (22794 10099 0 0))
;;; Generated autoloads from browse-url-prefix.el
(autoload 'browse-url-prefix "browse-url-prefix" "\
Browse URL using a browser determined by the prefix arg.
With a prefix arg, the function
Interactively, prompt the user for URL, using any URL at point as
a default.
\(fn URL &rest ARGS)" t nil)
;;;***
;;;### (autoloads nil "canary" "canary.el" (22794 10099 0 0))
;;; Generated autoloads from canary.el
(autoload 'canary "canary" "\
Print a message containing ARGS.
\(fn &rest ARGS)" nil nil)
(autoload 'canary-hooks "canary" "\
Call COMMAND, reporting every hook run in the process.
Interactively, prompt for a command to execute.
Return a list of the hooks run, in the order they were run.
Interactively, or with optional argument VERBOSE, also print a
message listing the hooks.
\(fn COMMAND &optional VERBOSE)" t nil)
;;;***
;;;### (autoloads nil "cde" "cde.el" (22794 10099 0 0))
;;; Generated autoloads from cde.el
(autoload 'cde "cde" "\
Count the numbers in RANGES.
Here, RANGES may either be a comma-separated string of hyphenated
ranges, e.g. \"1-5,7,8-15\", or a list encoding the same
information, e.g., '((1 5) 7 (8 15)). For both of the examples above,
cde will return 14.
Additionally, the alphabetic character \"A\" and \"B\" are
interpreted as sides of a page, with the page size given by
`cde-page-size'. Thus if `cde-page-size' is 50 (the default),
then the string \"5A\" will be interpreted as the integer 5,
while the string \"5B\" will be interpreted as 55. This feature
is unavailable if RANGES is presented as a list.
\(fn RANGES)" nil nil)
(autoload 'cde-format "cde" "\
Convert word at point with `cde'.
If the text at point looks like a suitable input for `cde',
replace it with a string of the form
N (RANGES)
where RANGES is the original word and N is the result of calling
`cde' on RANGES. The return value is the text inserted.
If the text at point is not suitable for `cde', do nothing and
return nil. Interactively, or with VERBOSE non-nil, print an
explanatory message.
\(fn &optional VERBOSE)" t nil)
;;;***
;;;### (autoloads nil "clean-eval" "clean-eval.el" (22794 10099 0
;;;;;; 0))
;;; Generated autoloads from clean-eval.el
(defvar clean-eval-mode nil "\
Non-nil if Clean-Eval mode is enabled.
See the `clean-eval-mode' command
for a description of this minor mode.
Setting this variable directly does not take effect;
either customize it (see the info node `Easy Customization')
or call the function `clean-eval-mode'.")
(custom-autoload 'clean-eval-mode "clean-eval" nil)
(autoload 'clean-eval-mode "clean-eval" "\
Mode to clean evaluation output.
When enabled, evaluating elisp (e.g., with `eval-expression' or
via `ielm') will not produce extra \"junk output\". For example,
you would see
(+ 1 1)
=> 2
rather than
(+ 1 1)
=> 2 (#o2, #x2, ?\\C-b).
Note that this is accomplished via advice on the function
`eval-expression-print-format'.
\(fn &optional ARG)" t nil)
;;;***
;;;### (autoloads nil "deck" "deck.el" (22794 10099 0 0))
;;; Generated autoloads from deck.el
(autoload 'deck-pull-buffer-backward "deck" "\
Pull buffer from another window.
Display in this buffer the one currently displayed in the window
COUNT windows forward (in the same ordering as `other-window'),
skipping windows dedicated to their current buffers. Display in
the window previously occupied by this buffer the previous buffer
displayed in that window (using `switch-to-prev-buffer').
\(fn &optional COUNT)" t nil)
(autoload 'deck-pull-buffer-forward "deck" "\
As `deck-pull-buffer-backward' with direction reversed.
\(fn &optional COUNT)" t nil)
(autoload 'deck-push-buffer-forward "deck" "\
Slide active buffer to another window.
Display this buffer COUNT windows forward (in the same ordering
as `other-window'), skipping windows dedicated to their current
buffers, and display in the current window the previous buffer
displayed here (using `switch-to-prev-buffer').
As a special case, if COUNT is zero, surf forward one window (see
`deck-surf-buffer-forward').
\(fn &optional COUNT)" t nil)
(autoload 'deck-push-buffer-backward "deck" "\
As `deck-push-buffer-forward' with direction reversed.
\(fn &optional COUNT)" t nil)
(autoload 'deck-surf-buffer-forward "deck" "\
As `deck-push-buffer-forward', but select target window.
As a special case, if COUNT is zero, act as if COUNT were 1 but
do not select the target window. This is for convenience in
interactive usage.
\(fn &optional COUNT)" t nil)
(autoload 'deck-surf-buffer-backward "deck" "\
As `deck-push-buffer-backward', but select target window.
As a special case, if COUNT is zero, act as if COUNT were 1 but
do not select the target window. This is for convenience in
interactive usage.
\(fn &optional COUNT)" t nil)
(autoload 'deck-swap-buffer-forward "deck" "\
Swap active buffer with that in another window.
Display this buffer COUNT forward (in the same ordering as
`other-window'), skipping windows dedicated to their current
buffers, and display in this window the buffer that was displayed
there.
As a special case, if COUNT is zero, act as if COUNT were 1 and
then select the targeted window (as `deck-surf-swap-buffer-forward').
\(fn &optional COUNT)" t nil)
(autoload 'deck-swap-buffer-backward "deck" "\
As `deck-swap-buffer-forward' with direction reversed.
\(fn &optional COUNT)" t nil)
(autoload 'deck-surf-swap-buffer-forward "deck" "\
As `deck-swap-buffer-forward' but select target window.
As a special case, if COUNT is zero, act as if COUNT were 1 but
do not select the target window. This is for convenience in
interactive usage.
\(fn &optional COUNT)" t nil)
(autoload 'deck-surf-swap-buffer-backward "deck" "\
As `deck-swap-buffer-backward' but select target window.
As a special case, if COUNT is zero, act as if COUNT were 1 but
do not select the target window. This is for convenience in
interactive usage.
\(fn &optional COUNT)" t nil)
;;;***
;;;### (autoloads nil "elfeed-lens" "elfeed-lens.el" (22794 10099
;;;;;; 0 0))
;;; Generated autoloads from elfeed-lens.el
(autoload 'elfeed-lens-cycle "elfeed-lens" "\
Apply the next filter in `elfeed-lens-list'.
If the current search filter is an element of `elfeed-lens-list',
apply the filter immediately following that one in the list,
looping back to the beginning if necessary.
If the current search filter is not in `elfeed-lens-list', just
apply the first filter in the list.
If `elfeed-lens-list' is empty, just apply the default filter.
Return the filter applied. When called interactively or the
optional VERBOSE parameter is non-nil, also print a message
informing the user of the newly applied filter.
\(fn &optional VERBOSE)" t nil)
;;;***
;;;### (autoloads nil "elfeed-sync" "elfeed-sync.el" (22794 10099
;;;;;; 0 0))
;;; Generated autoloads from elfeed-sync.el
(autoload 'elfeed-sync-save "elfeed-sync" "\
Save `elfeed' database.
This is just an interactive version of `elfeed-db-save'.
\(fn)" t nil)
;;;***
;;;### (autoloads nil "enumerate" "enumerate.el" (22794 10099 0 0))
;;; Generated autoloads from enumerate.el
(autoload 'enumerate-lines "enumerate" "\
Insert a number for each line in the region.
Non-interactively, act on the text between BEG and END.
If the region is not active, act on the entire buffer.
If the region to be acted on starts or ends in the middle of a
line, a line number will still be inserted for that line.
If OFFSET is supplied (interactively, as a numeric prefix
argument), it is used as a starting point for the numbering;
otherwise, it defaults to 1.
If EOL is non-nil, the numbers will be appended to the end of
each line instead of being prepended to the beginning.
The SEP argument is the string separating the line number from
the rest of the line; i.e., it will ordinarily follow the number
but precedes it if EOL is supplied. This defaults to a single
space.
The FORMAT-STR argument can be used to configure how the
numbers are displayed. This is a string similar to those used in
the `format' function, but all ordinary format specifiers should
be double-escaped (e.g., \"%%d\"), and the special escape \"%n\"
will be replaced with the maximum number of digits of any line
number before the other escapes are interpreted. The default
value for FORMAT-STR is \"%%%nd\".
\(fn BEG END &optional OFFSET EOL SEP FORMAT-STR)" t nil)
(autoload 'enumerate-alpha "enumerate" "\
Number lines in region according to alphabetic order.
As `enumerate-lines', except lines are numbered according to
their alphabetic order instead of their position, and the option
to put the number at the end of the line is unavailable.
\(fn BEG END &optional OFFSET SEP FORMAT-STRING)" t nil)
;;;***
;;;### (autoloads nil "family-local" "family-local.el" (22794 10099
;;;;;; 0 0))
;;; Generated autoloads from family-local.el
(autoload 'setq-family-local "family-local" "\
Set each VAR to VALUE in FAMILY.
\(fn FAMILY [VAR VALUE] ...)" nil t)
(function-put 'setq-family-local 'lisp-indent-function '1)
;;;***
;;;### (autoloads nil "fixed-scale" "fixed-scale.el" (22794 10099
;;;;;; 0 0))
;;; Generated autoloads from fixed-scale.el
(defvar fixed-scale-mode t "\
Non-nil if Fixed-Scale mode is enabled.
See the `fixed-scale-mode' command
for a description of this minor mode.
Setting this variable directly does not take effect;
either customize it (see the info node `Easy Customization')
or call the function `fixed-scale-mode'.")
(custom-autoload 'fixed-scale-mode "fixed-scale" nil)
(autoload 'fixed-scale-mode "fixed-scale" "\
Global minor mode to make `text-scale-mode' stickier.
Sometimes a command will remove text scaling as a byproduct of
its function. This mode attempts to rectify that. To use it,
you must add commands that reset the text scale to the variable
`fixed-scale-command-list'. Then, whenever one of those commands
is executed while `fixed-scale-mode' is enabled (it is enabled by
default, if the module `fixed-scale' has been loaded),
`fixed-scale-mode' will remember the proper text scaling and
restore it after the command is finished.
\(fn &optional ARG)" t nil)
;;;***
;;;### (autoloads nil "forms-aux" "forms-aux.el" (22794 10099 0 0))
;;; Generated autoloads from forms-aux.el
(autoload 'forms-aux-open-file "forms-aux" "\
Open the auxiliary file for the current record.
The filename to open is the current record's value for the field
numbered by `forms-aux-field'. Open this file, if it exists, in
a separate window, and kill any other buffer previously created
by this function.
Return the newly opened buffer, but do not select it.
If `forms-aux-field' is nil, do nothing.
\(fn)" t nil)
;;;***
;;;### (autoloads nil "forms-narrow" "forms-narrow.el" (22794 10099
;;;;;; 0 0))
;;; Generated autoloads from forms-narrow.el
(autoload 'forms-narrow-shadow "forms-narrow" "\
Bind `forms-narrow-map' to `C-x n' in this buffer.
This binding will shadow entirely other, lower-precedence
keymaps (rather than merging their bindings).
If you want this to be the default in `forms-mode', add this
function to `forms-mode-hook'.
\(fn)" nil nil)
(autoload 'forms-narrow-again "forms-narrow" "\
Narrow current database using last narrowing critera.
\(fn &optional VERBOSE)" t nil)
(autoload 'forms-narrow-regexp "forms-narrow" "\
Narrow to records matching REGEXP in any field.
\(fn REGEXP)" t nil)
;;;***
;;;### (autoloads nil "forms-random" "forms-random.el" (22794 10099
;;;;;; 0 0))
;;; Generated autoloads from forms-random.el
(autoload 'forms-random-record "forms-random" "\
Go to a randomly selected record in current database.
If the database is narrowed, respect the current narrowing
predicate.
\(fn)" t nil)
(autoload 'forms-random-record-weighted "forms-random" "\
As `forms-random-record', but die is weighted.
Interpret the field specified by the variable
`forms-random-weight-field' as a weighting factor, using the
value of `forms-random-weight-transform' to transform this into
an integer.
If `forms-random-weight-field' is nil, treat all weights as
equal; i.e., behave identically to `forms-random-record'.
The chance of selecting any particular record R is then n/N,
where n is the value R has for the weighting field and N is the
total of this field across all records in the database.
\(fn)" t nil)
;;;***
;;;### (autoloads nil "hash" "hash.el" (22794 10099 0 0))
;;; Generated autoloads from hash.el
(autoload 'hash-insert "hash" "\
Insert the hash of STRING into current buffer.
Interactively, prompt for STRING.
If HASH is not supplied, it defaults to `hash-default'.
\(fn STRING &optional HASH)" t nil)
;;;***
;;;### (autoloads nil "helm-forms" "helm-forms.el" (22794 10099 0
;;;;;; 0))
;;; Generated autoloads from helm-forms.el
(autoload 'helm-forms-records "helm-forms" "\
A `helm' command for browsing records in `forms-mode'.
If the database is narrowed with `forms-narrow', only records
satisfying the current narrowing criterion are shown.
\(fn)" t nil)
;;;***
;;;### (autoloads nil "ielm-repl" "ielm-repl.el" (22794 10099 0 0))
;;; Generated autoloads from ielm-repl.el
(autoload 'ielm-repl "ielm-repl" "\
As `ielm', but show ielm buffer in other window.
\(fn)" t nil)
;;;***
;;;### (autoloads nil "kp-motion" "kp-motion.el" (22794 10099 0 0))
;;; Generated autoloads from kp-motion.el
(autoload 'kp-motion-mode "kp-motion" "\
Simple minor mode enabling motion with enter key on keypad.
When this mode is enabled, the enter key on the
keypad (`<kp-enter>') will be used for downward
motion (`next-line') instead of its normal function.
\(fn &optional ARG)" t nil)
;;;***
;;;### (autoloads nil "mode-family" "mode-family.el" (22794 10099
;;;;;; 0 0))
;;; Generated autoloads from mode-family.el
(autoload 'mode-family-create "mode-family" "\
Define FAMILY as a mode family.
If one already exists, do nothing.
A mode family is a way to designate several otherwise-unrelated
modes (major or minor) as sharing some particular characteristic.
Mode families are named using symbols in the standard obarray,
but this does not use either a symbol's variable slot or its
function slot, so the same symbol can name both a mode family and
a variable and/or function.
To associate a mode with a mode family, see `mode-family-add';
this creates the family if it doesn't already exist. To remove a
mode from a family, see `mode-family-remove'. To check for the
existence of a family, see `mode-family-exists-p'. To check
whether a mode is part of a family, see `mode-family-member-p',
`mode-family-list-members', or `mode-family-list-families'.
Each mode family has a hook, named `FAMILY-family-hook', and all
modes associated with a family (or derived from such a mode) run
this hook along with their individual mode hooks.
In the event that a variable already exists with the same name as
the hook variable for the new family, it will be \"stolen\" by
the mode family (without warning!), but its value will not be
changed; this is necessary in order to allow for out-of-order
hooks.
\(fn FAMILY)" nil nil)
(function-put 'mode-family-create 'lisp-indent-function 'defun)
(autoload 'mode-family-add "mode-family" "\
Add MODE to FAMILY. If FAMILY doesn't exist, create it.
If MODE is already a member of FAMILY, do nothing.
See the documentation for `mode-family-create' for more information.
\(fn MODE FAMILY)" nil nil)
;;;***
;;;### (autoloads nil "multitheme" "multitheme.el" (22794 10099 0
;;;;;; 0))
;;; Generated autoloads from multitheme.el
(autoload 'multitheme-cycle "multitheme" "\
Cycle between the themes in `multitheme-base-theme-list'.
If none of these themes is currently active, instead enable the
first element of `multitheme-base-theme-list'.
Also re-enable `multitheme-overtheme' so it remains \"on top\" of
the base theme.
If a theme to be enabled is not yet defined, attempt to load it
first (using `load-theme'). Respect `custom-safe-themes'.
After all theme changes have been made, run
`multitheme-base-change-hook'.
\(fn)" t nil)
;;;***
;;;### (autoloads nil "org-child" "org-child.el" (22794 10099 0 0))
;;; Generated autoloads from org-child.el
(autoload 'org-child-goto "org-child" "\
Goto the Nth child of heading at point.
Children are counted from 1. If heading does not have N
children, return nil and do not move point; otherwise, return
point.
If N is zero, call `org-back-to-heading' and return point.
If N is negative, goto the (-N)th child from the end (so
\(org-child-goto -1) moves to the last child).
\(fn N)" t nil)
;;;***
;;;### (autoloads nil "org-display" "org-display.el" (22794 10099
;;;;;; 0 0))
;;; Generated autoloads from org-display.el
(autoload 'org-display-capture-in-popout-frame "org-display" "\
As `org-capture', but do all work in a new frame.
When capture is completed or aborted, the new frame will be
deleted.
\(fn &optional GOTO KEYS)" t nil)
(autoload 'org-display-capture-in-whole-frame "org-display" "\
As `org-capture', but take over entire frame.
When capture is completed or aborted, the frame will be deleted.
This is designed to be used with the -e option for emacsclient,
where a frame has just been created that has no useful content in
it. For normal usage, `org-display-capture-in-popout-frame'
probably makes more sense.
\(fn &optional GOTO KEYS)" t nil)
;;;***
;;;### (autoloads nil "org-smart-agenda" "org-smart-agenda.el" (22794
;;;;;; 10099 0 0))
;;; Generated autoloads from org-smart-agenda.el
(autoload 'org-smart-agenda "org-smart-agenda" "\
Display an Org-mode agenda based on current day and time.
See the variables `org-smart-agenda-views' and
`org-smart-agenda-workday' for configuration options.
\(fn)" t nil)
;;;***
;;;### (autoloads nil "org-spin" "org-spin.el" (22794 10099 0 0))
;;; Generated autoloads from org-spin.el
(autoload 'org-spin "org-spin" "\
Move point to a random child of heading at point.
Return point.
If point is before the first heading of the buffer, move point to
a random top-level heading.
\(fn)" t nil)
(autoload 'org-spin-weighted "org-spin" "\
As `org-spin', weighted by property WEIGHT-PROP.
The parameter WEIGHT-PROP should be the name of a property.
Numeric values for that property are treated as weights for the
spin. Omitted weights default to 1 (but non-numeric values are
treated as 0).
If all weights are zero, then weights are ignored and the
selection is uniform, as in `org-spin'.
When called interactively or if WEIGHT-PROP is omitted, the value
of `org-spin-weight-property' is used.
\(fn &optional WEIGHT-PROP)" t nil)
;;;***
;;;### (autoloads nil "populate" "populate.el" (22794 10099 0 0))
;;; Generated autoloads from populate.el
(autoload 'populate-downwards-in-region "populate" "\
Copy non-blank lines downward in region.
Replace each blank line between BEG and END with the last
non-blank line appearing above it. Leading blank lines are left
untouched.
Interactively, operate on the region if the region is active. If
the region begins or ends mid-line, consider it to include that
entire line. If there is no active region, operate on the entire
buffer.
A blank line for the purposes of this command is a line that
contains only whitespace characters. It is not necessary that
the line be completely empty.
\(fn BEG END)" t nil)
;;;***
;;;### (autoloads nil "silence" "silence.el" (22794 10099 0 0))
;;; Generated autoloads from silence.el
(autoload 'silence "silence" "\
Execute BODY silencing messages matching MSG-LIST.
Here MSG-LIST is a list of the same format as `silence-list'.
Its elements will be added to `silence-list' for the duration
of BODY, and `silence-enabled' will be treated as non-nil.
This is accomplished by advising `message'. As `message' is a
primitive, not all messages can be silenced; calls from C code
may avoid being silenced.
\(fn MSG-LIST &rest BODY)" nil t)
(function-put 'silence 'lisp-indent-function '1)
(autoload 'silence-loading "silence" "\
Execute BODY silencing `load' messages.
Note that the mechanism used is unrelated to that used by the
`silence' macro. Instead, we advise `load'. As `load' is also a
primitive, the same caveat regarding C calls applies.
\(fn &rest BODY)" nil t)
(function-put 'silence-loading 'lisp-indent-function '0)
;;;***
;;;### (autoloads nil "source-lock" "source-lock.el" (22794 10099
;;;;;; 0 0))
;;; Generated autoloads from source-lock.el
(defvar source-lock-mode nil "\
Non-nil if Source-Lock mode is enabled.
See the `source-lock-mode' command
for a description of this minor mode.
Setting this variable directly does not take effect;
either customize it (see the info node `Easy Customization')
or call the function `source-lock-mode'.")
(custom-autoload 'source-lock-mode "source-lock" nil)
(autoload 'source-lock-mode "source-lock" "\
Mode to make source files read-only.
When enabled, any file in one of the directories listed in
`source-lock-directories' will be opened in read-only mode. If
`source-lock-protect-packages-p' is non-nil, then
`package-user-dir' is similarly protected.
\(fn &optional ARG)" t nil)
;;;***
;;;### (autoloads nil "tidy" "tidy.el" (22794 10099 0 0))
;;; Generated autoloads from tidy.el
(autoload 'tidy-buffers "tidy" "\
Bury all buffers named in `tidy-unwanted-buffer-list'.
The optional parameters KILL and FRAME are just as in the
function `quit-windows-on', except FRAME defaults to t (so that
only windows on the selected frame are considered).
Note that a nil value for FRAME cannot be distinguished from an
omitted parameter and will be ignored; use some other value if
you want to quit windows on all frames.
\(fn &optional KILL FRAME)" t nil)
;;;***
;;;### (autoloads nil "umbra" "umbra.el" (22794 10099 0 0))
;;; Generated autoloads from umbra.el
(autoload 'umbra-keymap "umbra" "\
Return umbra keymap corresponding to MODE for `umbra-mode'.
The parameter MODE should be a symbol naming a major or minor
mode (e.g., the symbol 'text-mode). Other symbols can be passed,
but this may or may not work as expected.
The keymap returned will be active whenever both MODE (or a mode
descended from MODE) and `umbra-mode' are active. This provides
a mechanism for mode-local keybindings that are still toggleable
with `umbra-mode'.
If PENUMBRA is non-nil, then MODE should be a major mode, and the
keymap returned (the \"penumbra keymap\" for MODE) takes
precedence over all ordinary augmented maps.
Subsequent calls to this function with the same arguments return
the same keymap, including any bindings that were made to that
keymap after its construction. That is, there is at most one
umbra keymap and one penumbra keymap for each mode, and this
function returns the appropriate such keymap, constructing it if
necessary.
The variable holding an umbra keymap is named using the format
'umbra-mode-map:MODE', e.g. 'umbra-mode-map:text-mode'. Penumbra
keymaps are named like 'umbra-overriding-mode-map:MODE.
\(fn MODE &optional PENUMBRA)" nil nil)