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.

43 lines
1.3 KiB

  1. ;;; cython-mode-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 "cython-mode" "cython-mode.el" (0 0 0 0))
  7. ;;; Generated autoloads from cython-mode.el
  8. (add-to-list 'auto-mode-alist '("\\.pyx\\'" . cython-mode))
  9. (add-to-list 'auto-mode-alist '("\\.pxd\\'" . cython-mode))
  10. (add-to-list 'auto-mode-alist '("\\.pxi\\'" . cython-mode))
  11. (let ((loads (get 'cython 'custom-loads))) (if (member '"cython-mode" loads) nil (put 'cython 'custom-loads (cons '"cython-mode" loads))))
  12. (defvar cython-default-compile-format "cython -a %s" "\
  13. Format for the default command to compile a Cython file.
  14. It will be passed to `format' with `buffer-file-name' as the only other argument.")
  15. (custom-autoload 'cython-default-compile-format "cython-mode" t)
  16. (autoload 'cython-mode "cython-mode" "\
  17. Major mode for Cython development, derived from Python mode.
  18. \\{cython-mode-map}
  19. \(fn)" t nil)
  20. (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cython-mode" '("cython-")))
  21. ;;;***
  22. ;; Local Variables:
  23. ;; version-control: never
  24. ;; no-byte-compile: t
  25. ;; no-update-autoloads: t
  26. ;; coding: utf-8
  27. ;; End:
  28. ;;; cython-mode-autoloads.el ends here