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.

47 lines
1.4 KiB

5 years ago
  1. ;;; inheritenv-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 "inheritenv" "inheritenv.el" (0 0 0 0))
  7. ;;; Generated autoloads from inheritenv.el
  8. (autoload 'inheritenv-apply "inheritenv" "\
  9. Apply FUNC such that the environment it sees will match the current value.
  10. This is useful if FUNC creates a temp buffer, because that will
  11. not inherit any buffer-local values of variables `exec-path' and
  12. `process-environment'.
  13. This function is designed for convenient use as an \"around\" advice.
  14. ARGS is as for ORIG.
  15. \(fn FUNC &rest ARGS)" nil nil)
  16. (autoload 'inheritenv "inheritenv" "\
  17. Wrap BODY so that the environment it sees will match the current value.
  18. This is useful if BODY creates a temp buffer, because that will
  19. not inherit any buffer-local values of variables `exec-path' and
  20. `process-environment'.
  21. \(fn &rest BODY)" nil t)
  22. (autoload 'inheritenv-add-advice "inheritenv" "\
  23. Advise function FUNC with `inheritenv-apply'.
  24. This will ensure that any buffers (including temporary buffers)
  25. created by FUNC will inherit the caller's environment.
  26. \(fn FUNC)" nil t)
  27. ;;;***
  28. ;; Local Variables:
  29. ;; version-control: never
  30. ;; no-byte-compile: t
  31. ;; no-update-autoloads: t
  32. ;; coding: utf-8
  33. ;; End:
  34. ;;; inheritenv-autoloads.el ends here