trying to fix

This commit is contained in:
Chris Cochrun 2022-01-03 12:41:35 -06:00
parent fa407dfeb6
commit e013d7569e
22945 changed files with 447936 additions and 0 deletions

View file

@ -0,0 +1,54 @@
;;; fennel-mode-autoloads.el --- automatically extracted autoloads -*- lexical-binding: t -*-
;;
;;; Code:
;;;### (autoloads nil "fennel-mode" "fennel-mode.el" (0 0 0 0))
;;; Generated autoloads from fennel-mode.el
(autoload 'fennel-repl-mode "fennel-mode" "\
Major mode for Fennel REPL.
\(fn)" t nil)
(autoload 'fennel-mode "fennel-mode" "\
Major mode for editing Fennel code.
\\{fennel-mode-map}
\(fn)" t nil)
(autoload 'fennel-repl "fennel-mode" "\
Switch to the fennel repl BUFFER, or start a new one if needed.
If there was a REPL buffer but its REPL process is dead,
a new one is started in the same buffer.
If ASK-FOR-COMMAND? was supplied, asks for command to start the
REPL. If optional BUFFER is supplied it is used as the last
buffer before starting the REPL.
The command is persisted as a buffer-local variable, the REPL
buffer remembers the command that was used to start it.
Resetting the command to another value can be done by invoking
setting ASK-FOR-COMMAND? to non-nil, i.e. by using a prefix
argument.
Return this buffer.
\(fn ASK-FOR-COMMAND\\=\\? &optional BUFFER)" t nil)
(add-to-list 'auto-mode-alist '("\\.fnl\\'" . fennel-mode))
(register-definition-prefixes "fennel-mode" '("fennel-"))
;;;***
(provide 'fennel-mode-autoloads)
;; Local Variables:
;; version-control: never
;; no-byte-compile: t
;; no-update-autoloads: t
;; coding: utf-8
;; End:
;;; fennel-mode-autoloads.el ends here