Update packages

This commit is contained in:
Mateus Pinto Rodrigues
2018-10-04 13:56:56 -03:00
parent 5d03e5e124
commit d272c43bcd
785 changed files with 367265 additions and 25 deletions

View File

@@ -0,0 +1,13 @@
(load-file "lua-mode.el")
(defmacro add-trace-for (fn)
(let ((trace-fn-name (intern (concat "trace--" (symbol-name fn)))))
`(progn
(defun ,trace-fn-name (&rest args)
(message "%s was called with: %S" #',fn args))
(add-function :before (symbol-function #',fn) #',trace-fn-name))))
;; (add-trace-for font-lock-fontify-region)
;; (add-trace-for font-lock-unfontify-region)
;; (add-trace-for lua--propertize-multiline-bounds)

View File

@@ -0,0 +1,51 @@
;;; lua-mode-autoloads.el --- automatically extracted autoloads
;;
;;; Code:
(add-to-list 'load-path (directory-file-name
(or (file-name-directory #$) (car load-path))))
;;;### (autoloads nil "init-tryout" "init-tryout.el" (0 0 0 0))
;;; Generated autoloads from init-tryout.el
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "init-tryout" '("add-trace-for")))
;;;***
;;;### (autoloads nil "lua-mode" "lua-mode.el" (0 0 0 0))
;;; Generated autoloads from lua-mode.el
(autoload 'lua-mode "lua-mode" "\
Major mode for editing Lua code.
\(fn)" t nil)
(add-to-list 'auto-mode-alist '("\\.lua\\'" . lua-mode))
(add-to-list 'interpreter-mode-alist '("lua" . lua-mode))
(defalias 'run-lua #'lua-start-process)
(autoload 'lua-start-process "lua-mode" "\
Start a Lua process named NAME, running PROGRAM.
PROGRAM defaults to NAME, which defaults to `lua-default-application'.
When called interactively, switch to the process buffer.
\(fn &optional NAME PROGRAM STARTFILE &rest SWITCHES)" t nil)
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "lua-mode" '("lua-")))
;;;***
;;;### (autoloads nil nil ("lua-mode-pkg.el") (0 0 0 0))
;;;***
;; Local Variables:
;; version-control: never
;; no-byte-compile: t
;; no-update-autoloads: t
;; coding: utf-8
;; End:
;;; lua-mode-autoloads.el ends here

View File

@@ -0,0 +1,19 @@
(define-package "lua-mode" "20180323.1021" "a major-mode for editing Lua scripts" 'nil :keywords
'("languages" "processes" "tools")
:authors
'(("2011-2013 immerrr" . "immerrr+lua@gmail.com")
("2010-2011 Reuben Thomas" . "rrt@sc3d.org")
("2006 Juergen Hoetzel" . "juergen@hoetzel.info")
("2004 various (support for Lua 5 and byte compilation)")
("2001 Christian Vogler" . "cvogler@gradient.cis.upenn.edu")
("1997 Bret Mogilefsky" . "mogul-lua@gelatinous.com")
("tcl-mode by Gregor Schmid" . "schmid@fb3-s7.math.tu-berlin.de")
("with tons of assistance from")
("Paul Du Bois" . "pld-lua@gelatinous.com")
("Aaron Smith" . "aaron-lua@gelatinous.com"))
:maintainer
'("2011-2013 immerrr" . "immerrr+lua@gmail.com")
:url "http://immerrr.github.com/lua-mode")
;; Local Variables:
;; no-byte-compile: t
;; End:

File diff suppressed because it is too large Load Diff