]> code.delx.au - gnu-emacs-elpa/commitdiff
* packages/yasnippet: Fix lexical-binding cookie; and require cl.
authorStefan Monnier <monnier@iro.umontreal.ca>
Wed, 26 Nov 2014 16:18:16 +0000 (11:18 -0500)
committerStefan Monnier <monnier@iro.umontreal.ca>
Wed, 26 Nov 2014 16:18:16 +0000 (11:18 -0500)
* packages/yasnippet/yasnippet-tests.el: Fix lexical-binding cookie.
* packages/yasnippet/yasnippet-debug.el: Require cl.

packages/yasnippet/yasnippet-debug.el
packages/yasnippet/yasnippet-tests.el

index 9529e7f0da185df6ccf679c7d86fa0c9085c06d6..248c440a77fd75d756b9ff504101048dfdc043d9 100644 (file)
@@ -1,6 +1,6 @@
 ;;; yasnippet-debug.el --- debug functions for yasnippet
 
-;; Copyright (C) 2010, 2013  Free Software Foundation, Inc.
+;; Copyright (C) 2010, 2013, 2014  Free Software Foundation, Inc.
 
 ;; Author: João Távora
 ;; Keywords: emulations, convenience
@@ -25,6 +25,7 @@
 ;;; Code:
 
 (require 'yasnippet)
+(require 'cl)
 
 (defun yas-debug-snippet-vars ()
   "Debug snippets, fields, mirrors and the `buffer-undo-list'."
index db1fe5596a6228162290dbbcc08a908f437fdcc8..9bf592f88833b64908c0d47e975a5f702c57d8c6 100644 (file)
@@ -1,6 +1,6 @@
-;;; yasnippet-tests.el --- some yasnippet tests
+;;; yasnippet-tests.el --- some yasnippet tests  -*- lexical-binding: t -*-
 
-;; Copyright (C) 2012, 2013  Free Software Foundation, Inc.
+;; Copyright (C) 2012, 2013, 2014  Free Software Foundation, Inc.
 
 ;; Author: João Távora <joaot@siscog.pt>
 ;; Keywords: emulations, convenience
@@ -27,6 +27,7 @@
 (require 'yasnippet)
 (require 'ert)
 (require 'ert-x)
+(require 'cl)
 
 \f
 ;;; Snippet mechanics
@@ -646,6 +647,3 @@ TODO: be meaner"
 
 (provide 'yasnippet-tests)
 ;;; yasnippet-tests.el ends here
-;; Local Variables:
-;; lexical-binding: t
-;; End: