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.

71 lines
2.6 KiB

  1. ;;; spinner-autoloads.el --- automatically extracted autoloads
  2. ;;
  3. ;;; Code:
  4. ;;;### (autoloads nil "spinner" "spinner.el" (0 0 0 0))
  5. ;;; Generated autoloads from spinner.el
  6. (autoload 'spinner-create "spinner" "\
  7. Create a spinner of the given TYPE.
  8. The possible TYPEs are described in `spinner--type-to-frames'.
  9. FPS, if given, is the number of desired frames per second.
  10. Default is `spinner-frames-per-second'.
  11. If BUFFER-LOCAL is non-nil, the spinner will be automatically
  12. deactivated if the buffer is killed. If BUFFER-LOCAL is a
  13. buffer, use that instead of current buffer.
  14. When started, in order to function properly, the spinner runs a
  15. timer which periodically calls `force-mode-line-update' in the
  16. curent buffer. If BUFFER-LOCAL was set at creation time, then
  17. `force-mode-line-update' is called in that buffer instead. When
  18. the spinner is stopped, the timer is deactivated.
  19. DELAY, if given, is the number of seconds to wait after starting
  20. the spinner before actually displaying it. It is safe to cancel
  21. the spinner before this time, in which case it won't display at
  22. all.
  23. \(fn &optional TYPE BUFFER-LOCAL FPS DELAY)" nil nil)
  24. (autoload 'spinner-start "spinner" "\
  25. Start a mode-line spinner of given TYPE-OR-OBJECT.
  26. If TYPE-OR-OBJECT is an object created with `make-spinner',
  27. simply activate it. This method is designed for minor modes, so
  28. they can use the spinner as part of their lighter by doing:
  29. \\='(:eval (spinner-print THE-SPINNER))
  30. To stop this spinner, call `spinner-stop' on it.
  31. If TYPE-OR-OBJECT is anything else, a buffer-local spinner is
  32. created with this type, and it is displayed in the
  33. `mode-line-process' of the buffer it was created it. Both
  34. TYPE-OR-OBJECT and FPS are passed to `make-spinner' (which see).
  35. To stop this spinner, call `spinner-stop' in the same buffer.
  36. Either way, the return value is a function which can be called
  37. anywhere to stop this spinner. You can also call `spinner-stop'
  38. in the same buffer where the spinner was created.
  39. FPS, if given, is the number of desired frames per second.
  40. Default is `spinner-frames-per-second'.
  41. DELAY, if given, is the number of seconds to wait until actually
  42. displaying the spinner. It is safe to cancel the spinner before
  43. this time, in which case it won't display at all.
  44. \(fn &optional TYPE-OR-OBJECT FPS DELAY)" nil nil)
  45. (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "spinner" '("spinner")))
  46. ;;;***
  47. (provide 'spinner-autoloads)
  48. ;; Local Variables:
  49. ;; version-control: never
  50. ;; no-byte-compile: t
  51. ;; no-update-autoloads: t
  52. ;; coding: utf-8
  53. ;; End:
  54. ;;; spinner-autoloads.el ends here