]> code.delx.au - gnu-emacs/blobdiff - lisp/emacs-lisp/tq.el
Update copyright year to 2016
[gnu-emacs] / lisp / emacs-lisp / tq.el
index 3d3b371ad5c8308557357e0f724183d1c3ae6ab0..c01262d48a9ab3d08e3436ad1ad3e44adbc6bb27 100644 (file)
@@ -1,9 +1,10 @@
-;;; tq.el --- utility to maintain a transaction queue
+;;; tq.el --- utility to maintain a transaction queue  -*- lexical-binding:t -*-
 
-;; Copyright (C) 1985-1987, 1992, 2001-2011 Free Software Foundation, Inc.
+;; Copyright (C) 1985-1987, 1992, 2001-2016 Free Software Foundation,
+;; Inc.
 
 ;; Author: Scott Draves <spot@cs.cmu.edu>
-;; Maintainer: FSF
+;; Maintainer: emacs-devel@gnu.org
 ;; Adapted-By: ESR
 ;; Keywords: extensions
 
@@ -86,8 +87,7 @@ to a tcp server on another machine."
                                     (process-name process)))))))
     (buffer-disable-undo (tq-buffer tq))
     (set-process-filter process
-                       `(lambda (proc string)
-                          (tq-filter ',tq string)))
+                       (lambda (_proc string) (tq-filter tq string)))
     tq))
 
 (defun tq-queue-add (tq question re closure fn)