35 lines
1 KiB
EmacsLisp
35 lines
1 KiB
EmacsLisp
;;; pfuture-autoloads.el --- automatically extracted autoloads -*- lexical-binding: t -*-
|
||
;;
|
||
;;; Code:
|
||
|
||
|
||
;;;### (autoloads nil "pfuture" "pfuture.el" (0 0 0 0))
|
||
;;; Generated autoloads from pfuture.el
|
||
|
||
(autoload 'pfuture-new "pfuture" "\
|
||
Create a new future process for command CMD.
|
||
Any arguments after the command are interpreted as arguments to the command.
|
||
This will return a process object with additional 'stderr and 'stdout
|
||
properties, which can be read via (process-get process 'stdout) and
|
||
\(process-get process 'stderr) or alternatively with
|
||
\(pfuture-result process) or (pfuture-stderr process).
|
||
|
||
Note that CMD must be a *sequence* of strings, meaning
|
||
this is wrong: (pfuture-new \"git status\")
|
||
this is right: (pfuture-new \"git\" \"status\")
|
||
|
||
\(fn &rest CMD)" nil nil)
|
||
|
||
(register-definition-prefixes "pfuture" '("pfuture-"))
|
||
|
||
;;;***
|
||
|
||
(provide 'pfuture-autoloads)
|
||
;; Local Variables:
|
||
;; version-control: never
|
||
;; no-byte-compile: t
|
||
;; no-update-autoloads: t
|
||
;; coding: utf-8
|
||
;; End:
|
||
;;; pfuture-autoloads.el ends here
|