mirror of
https://github.com/joaotavora/yasnippet.git
synced 2025-10-13 21:13:04 +00:00
quieten byte-compiler
This commit is contained in:
parent
42ed181f4a
commit
49dde5177b
@ -250,4 +250,5 @@ Use multiple times to bind different COMMANDs to the same KEY."
|
|||||||
;;; dropdown-list.el ends here
|
;;; dropdown-list.el ends here
|
||||||
;; Local Variables:
|
;; Local Variables:
|
||||||
;; coding: utf-8
|
;; coding: utf-8
|
||||||
|
;; byte-compile-warnings: (not cl-functions)
|
||||||
;; End:
|
;; End:
|
||||||
|
12
yasnippet.el
12
yasnippet.el
@ -136,6 +136,15 @@
|
|||||||
(require 'easymenu)
|
(require 'easymenu)
|
||||||
(require 'help-mode)
|
(require 'help-mode)
|
||||||
|
|
||||||
|
(eval-when-compile
|
||||||
|
(defvar yas--editing-template)
|
||||||
|
(defvar yas--guessed-modes)
|
||||||
|
(defvar yas--indent-original-column)
|
||||||
|
(defvar yas--scheduled-jit-loads)
|
||||||
|
(defvar yas-keymap)
|
||||||
|
(defvar yas-selected-text)
|
||||||
|
(defvar yas-verbosity))
|
||||||
|
|
||||||
|
|
||||||
;;; User customizable variables
|
;;; User customizable variables
|
||||||
|
|
||||||
@ -1849,7 +1858,7 @@ This works by stubbing a few functions, then calling
|
|||||||
(when (file-exists-p elfile)
|
(when (file-exists-p elfile)
|
||||||
(insert ";;; .yas-setup.el support file if any:\n;;;\n")
|
(insert ";;; .yas-setup.el support file if any:\n;;;\n")
|
||||||
(insert-file-contents elfile)
|
(insert-file-contents elfile)
|
||||||
(end-of-buffer)
|
(goto-char (point-max))
|
||||||
)))
|
)))
|
||||||
(yas-define-snippets
|
(yas-define-snippets
|
||||||
(mode snippets)
|
(mode snippets)
|
||||||
@ -4564,4 +4573,5 @@ upon.")
|
|||||||
;;; yasnippet.el ends here
|
;;; yasnippet.el ends here
|
||||||
;; Local Variables:
|
;; Local Variables:
|
||||||
;; coding: utf-8
|
;; coding: utf-8
|
||||||
|
;; byte-compile-warnings: (not cl-functions)
|
||||||
;; End:
|
;; End:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user