Personal emacs config
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

184 lines
5.8 KiB

  1. ;;; async-autoloads.el --- automatically extracted autoloads
  2. ;;
  3. ;;; Code:
  4. (add-to-list 'load-path (directory-file-name
  5. (or (file-name-directory #$) (car load-path))))
  6. ;;;### (autoloads nil "async" "async.el" (0 0 0 0))
  7. ;;; Generated autoloads from async.el
  8. (autoload 'async-start-process "async" "\
  9. Start the executable PROGRAM asynchronously. See `async-start'.
  10. PROGRAM is passed PROGRAM-ARGS, calling FINISH-FUNC with the
  11. process object when done. If FINISH-FUNC is nil, the future
  12. object will return the process object when the program is
  13. finished. Set DEFAULT-DIRECTORY to change PROGRAM's current
  14. working directory.
  15. \(fn NAME PROGRAM FINISH-FUNC &rest PROGRAM-ARGS)" nil nil)
  16. (autoload 'async-start "async" "\
  17. Execute START-FUNC (often a lambda) in a subordinate Emacs process.
  18. When done, the return value is passed to FINISH-FUNC. Example:
  19. (async-start
  20. ;; What to do in the child process
  21. (lambda ()
  22. (message \"This is a test\")
  23. (sleep-for 3)
  24. 222)
  25. ;; What to do when it finishes
  26. (lambda (result)
  27. (message \"Async process done, result should be 222: %s\"
  28. result)))
  29. If FINISH-FUNC is nil or missing, a future is returned that can
  30. be inspected using `async-get', blocking until the value is
  31. ready. Example:
  32. (let ((proc (async-start
  33. ;; What to do in the child process
  34. (lambda ()
  35. (message \"This is a test\")
  36. (sleep-for 3)
  37. 222))))
  38. (message \"I'm going to do some work here\") ;; ....
  39. (message \"Waiting on async process, result should be 222: %s\"
  40. (async-get proc)))
  41. If you don't want to use a callback, and you don't care about any
  42. return value from the child process, pass the `ignore' symbol as
  43. the second argument (if you don't, and never call `async-get', it
  44. will leave *emacs* process buffers hanging around):
  45. (async-start
  46. (lambda ()
  47. (delete-file \"a remote file on a slow link\" nil))
  48. 'ignore)
  49. Note: Even when FINISH-FUNC is present, a future is still
  50. returned except that it yields no value (since the value is
  51. passed to FINISH-FUNC). Call `async-get' on such a future always
  52. returns nil. It can still be useful, however, as an argument to
  53. `async-ready' or `async-wait'.
  54. \(fn START-FUNC &optional FINISH-FUNC)" nil nil)
  55. (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "async" '("async-")))
  56. ;;;***
  57. ;;;### (autoloads nil "async-bytecomp" "async-bytecomp.el" (0 0 0
  58. ;;;;;; 0))
  59. ;;; Generated autoloads from async-bytecomp.el
  60. (autoload 'async-byte-recompile-directory "async-bytecomp" "\
  61. Compile all *.el files in DIRECTORY asynchronously.
  62. All *.elc files are systematically deleted before proceeding.
  63. \(fn DIRECTORY &optional QUIET)" nil nil)
  64. (defvar async-bytecomp-package-mode nil "\
  65. Non-nil if Async-Bytecomp-Package mode is enabled.
  66. See the `async-bytecomp-package-mode' command
  67. for a description of this minor mode.
  68. Setting this variable directly does not take effect;
  69. either customize it (see the info node `Easy Customization')
  70. or call the function `async-bytecomp-package-mode'.")
  71. (custom-autoload 'async-bytecomp-package-mode "async-bytecomp" nil)
  72. (autoload 'async-bytecomp-package-mode "async-bytecomp" "\
  73. Byte compile asynchronously packages installed with package.el.
  74. Async compilation of packages can be controlled by
  75. `async-bytecomp-allowed-packages'.
  76. If called interactively, enable Async-Bytecomp-Package mode if
  77. ARG is positive, and disable it if ARG is zero or negative. If
  78. called from Lisp, also enable the mode if ARG is omitted or nil,
  79. and toggle it if ARG is `toggle'; disable the mode otherwise.
  80. \(fn &optional ARG)" t nil)
  81. (autoload 'async-byte-compile-file "async-bytecomp" "\
  82. Byte compile Lisp code FILE asynchronously.
  83. Same as `byte-compile-file' but asynchronous.
  84. \(fn FILE)" t nil)
  85. (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "async-bytecomp" '("async-byte")))
  86. ;;;***
  87. ;;;### (autoloads nil "dired-async" "dired-async.el" (0 0 0 0))
  88. ;;; Generated autoloads from dired-async.el
  89. (defvar dired-async-mode nil "\
  90. Non-nil if Dired-Async mode is enabled.
  91. See the `dired-async-mode' command
  92. for a description of this minor mode.
  93. Setting this variable directly does not take effect;
  94. either customize it (see the info node `Easy Customization')
  95. or call the function `dired-async-mode'.")
  96. (custom-autoload 'dired-async-mode "dired-async" nil)
  97. (autoload 'dired-async-mode "dired-async" "\
  98. Do dired actions asynchronously.
  99. If called interactively, enable Dired-Async mode if ARG is
  100. positive, and disable it if ARG is zero or negative. If called
  101. from Lisp, also enable the mode if ARG is omitted or nil, and
  102. toggle it if ARG is `toggle'; disable the mode otherwise.
  103. \(fn &optional ARG)" t nil)
  104. (autoload 'dired-async-do-copy "dired-async" "\
  105. Run dired-do-copy asynchronously.
  106. \(fn &optional ARG)" t nil)
  107. (autoload 'dired-async-do-symlink "dired-async" "\
  108. Run dired-do-symlink asynchronously.
  109. \(fn &optional ARG)" t nil)
  110. (autoload 'dired-async-do-hardlink "dired-async" "\
  111. Run dired-do-hardlink asynchronously.
  112. \(fn &optional ARG)" t nil)
  113. (autoload 'dired-async-do-rename "dired-async" "\
  114. Run dired-do-rename asynchronously.
  115. \(fn &optional ARG)" t nil)
  116. (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "dired-async" '("dired-async-")))
  117. ;;;***
  118. ;;;### (autoloads nil "smtpmail-async" "smtpmail-async.el" (0 0 0
  119. ;;;;;; 0))
  120. ;;; Generated autoloads from smtpmail-async.el
  121. (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "smtpmail-async" '("async-smtpmail-")))
  122. ;;;***
  123. ;;;### (autoloads nil nil ("async-pkg.el") (0 0 0 0))
  124. ;;;***
  125. ;; Local Variables:
  126. ;; version-control: never
  127. ;; no-byte-compile: t
  128. ;; no-update-autoloads: t
  129. ;; coding: utf-8
  130. ;; End:
  131. ;;; async-autoloads.el ends here