summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorMark Oteiza <mvoteiza@udel.edu>2016-10-31 20:31:22 -0400
committerMark Oteiza <mvoteiza@udel.edu>2016-10-31 20:31:22 -0400
commit7a87f82987f39656899e3e70d448d51e0af98a43 (patch)
tree563a7739a22d2072f3b38fced327915e1d2084f4 /lisp/emacs-lisp
parentd3c2d3ca4591b26a8d76f4b6ef1cfe5ccf766983 (diff)
downloademacs-7a87f82987f39656899e3e70d448d51e0af98a43.tar.gz
emacs-7a87f82987f39656899e3e70d448d51e0af98a43.tar.bz2
emacs-7a87f82987f39656899e3e70d448d51e0af98a43.zip
Turn on lexical-binding in some more libs
* lisp/calendar/icalendar.el: * lisp/emacs-lisp/regexp-opt.el: * lisp/emacs-lisp/timer.el: * lisp/gnus/message.el: * lisp/hex-util.el: Turn on lexical-binding.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/regexp-opt.el2
-rw-r--r--lisp/emacs-lisp/timer.el2
2 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/regexp-opt.el b/lisp/emacs-lisp/regexp-opt.el
index ef752858a4c..40033180770 100644
--- a/lisp/emacs-lisp/regexp-opt.el
+++ b/lisp/emacs-lisp/regexp-opt.el
@@ -1,4 +1,4 @@
-;;; regexp-opt.el --- generate efficient regexps to match strings
+;;; regexp-opt.el --- generate efficient regexps to match strings -*- lexical-binding: t -*-
;; Copyright (C) 1994-2016 Free Software Foundation, Inc.
diff --git a/lisp/emacs-lisp/timer.el b/lisp/emacs-lisp/timer.el
index c01ea4973c7..64aebeaa818 100644
--- a/lisp/emacs-lisp/timer.el
+++ b/lisp/emacs-lisp/timer.el
@@ -1,4 +1,4 @@
-;;; timer.el --- run a function with args at some time in future
+;;; timer.el --- run a function with args at some time in future -*- lexical-binding: t -*-
;; Copyright (C) 1996, 2001-2016 Free Software Foundation, Inc.