My attempt to optimize my emacs load time <1 second
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.

34 lines
1.0 KiB

  1. ;;; pfuture-autoloads.el --- automatically extracted autoloads
  2. ;;
  3. ;;; Code:
  4. ;;;### (autoloads nil "pfuture" "pfuture.el" (0 0 0 0))
  5. ;;; Generated autoloads from pfuture.el
  6. (autoload 'pfuture-new "pfuture" "\
  7. Create a new future process for command CMD.
  8. Any arguments after the command are interpreted as arguments to the command.
  9. This will return a process object with additional 'stderr and 'stdout
  10. properties, which can be read via (process-get process 'stdout) and
  11. \(process-get process 'stderr) or alternatively with
  12. \(pfuture-result process) or (pfuture-stderr process).
  13. Note that CMD must be a *sequence* of strings, meaning
  14. this is wrong: (pfuture-new \"git status\")
  15. this is right: (pfuture-new \"git\" \"status\")
  16. \(fn &rest CMD)" nil nil)
  17. (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "pfuture" '("pfuture-")))
  18. ;;;***
  19. (provide 'pfuture-autoloads)
  20. ;; Local Variables:
  21. ;; version-control: never
  22. ;; no-byte-compile: t
  23. ;; no-update-autoloads: t
  24. ;; coding: utf-8
  25. ;; End:
  26. ;;; pfuture-autoloads.el ends here