Klimi's new dotfiles with stow.
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

174 wiersze
5.3 KiB

4 lat temu
  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. \(fn &optional ARG)" t nil)
  77. (autoload 'async-byte-compile-file "async-bytecomp" "\
  78. Byte compile Lisp code FILE asynchronously.
  79. Same as `byte-compile-file' but asynchronous.
  80. \(fn FILE)" t nil)
  81. (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "async-bytecomp" '("async-byte")))
  82. ;;;***
  83. ;;;### (autoloads nil "dired-async" "dired-async.el" (0 0 0 0))
  84. ;;; Generated autoloads from dired-async.el
  85. (defvar dired-async-mode nil "\
  86. Non-nil if Dired-Async mode is enabled.
  87. See the `dired-async-mode' command
  88. for a description of this minor mode.
  89. Setting this variable directly does not take effect;
  90. either customize it (see the info node `Easy Customization')
  91. or call the function `dired-async-mode'.")
  92. (custom-autoload 'dired-async-mode "dired-async" nil)
  93. (autoload 'dired-async-mode "dired-async" "\
  94. Do dired actions asynchronously.
  95. \(fn &optional ARG)" t nil)
  96. (autoload 'dired-async-do-copy "dired-async" "\
  97. Run dired-do-copy asynchronously.
  98. \(fn &optional ARG)" t nil)
  99. (autoload 'dired-async-do-symlink "dired-async" "\
  100. Run dired-do-symlink asynchronously.
  101. \(fn &optional ARG)" t nil)
  102. (autoload 'dired-async-do-hardlink "dired-async" "\
  103. Run dired-do-hardlink asynchronously.
  104. \(fn &optional ARG)" t nil)
  105. (autoload 'dired-async-do-rename "dired-async" "\
  106. Run dired-do-rename asynchronously.
  107. \(fn &optional ARG)" t nil)
  108. (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "dired-async" '("dired-async-")))
  109. ;;;***
  110. ;;;### (autoloads nil "smtpmail-async" "smtpmail-async.el" (0 0 0
  111. ;;;;;; 0))
  112. ;;; Generated autoloads from smtpmail-async.el
  113. (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "smtpmail-async" '("async-smtpmail-")))
  114. ;;;***
  115. ;;;### (autoloads nil nil ("async-pkg.el") (0 0 0 0))
  116. ;;;***
  117. ;; Local Variables:
  118. ;; version-control: never
  119. ;; no-byte-compile: t
  120. ;; no-update-autoloads: t
  121. ;; coding: utf-8
  122. ;; End:
  123. ;;; async-autoloads.el ends here