diff options
author | Mark Oteiza <mvoteiza@udel.edu> | 2016-09-28 13:08:12 -0400 |
---|---|---|
committer | Mark Oteiza <mvoteiza@udel.edu> | 2016-09-28 13:08:12 -0400 |
commit | cbb2e845187bfbcc62e2accc9df7891a2326608a (patch) | |
tree | 1fc3cc9a58e0646119d81cc70663dda7454f867a /lisp/man.el | |
parent | 329e0274ec6a4ae82f86905b8cf844971b943085 (diff) | |
download | emacs-cbb2e845187bfbcc62e2accc9df7891a2326608a.tar.gz |
Turn on more lexical-binding
* lisp/dom.el:
* lisp/faces.el:
* lisp/htmlfontify.el: Turn on lexical-binding.
(htmlfontify-string): Use pushnew instead of add-to-list.
* lisp/info-xref.el:
* lisp/isearch.el:
* lisp/man.el:
* lisp/ps-def.el:
* lisp/ps-print.el:
* lisp/replace.el: Turn on lexical-binding. Require cl-lib at compile
time.
(multi-occur): Use cl-pushnew instead of add-to-list.
(replace-match-string-symbols): Remove unused lexical variable.
(replace-search, replace-highlight): Fix argument shadowing.
* lisp/sort.el:
* lisp/xml.el: Turn on lexical-binding.
(xml--parse-buffer): Use push instead of add-to-list.
* lisp/xt-mouse.el: Turn on lexical-binding.
Diffstat (limited to 'lisp/man.el')
-rw-r--r-- | lisp/man.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/man.el b/lisp/man.el index d127decfebd..0f3c4ba98e8 100644 --- a/lisp/man.el +++ b/lisp/man.el @@ -1,4 +1,4 @@ -;;; man.el --- browse UNIX manual pages +;;; man.el --- browse UNIX manual pages -*- lexical-binding: t -*- ;; Copyright (C) 1993-1994, 1996-1997, 2001-2016 Free Software ;; Foundation, Inc. |