diff options
author | Simen Heggestøyl <simenheg@gmail.com> | 2020-05-18 17:54:05 +0200 |
---|---|---|
committer | Simen Heggestøyl <simenheg@gmail.com> | 2020-05-18 17:58:01 +0200 |
commit | b2e2128745a00e06cb714bb3f47829f036a9caf9 (patch) | |
tree | 5d38f1af82ea4542f42752f2722c019efad1290d /lisp/net/webjump.el | |
parent | b1fe27d77db8f819641231ca46725f3eed0b4d9b (diff) | |
download | emacs-b2e2128745a00e06cb714bb3f47829f036a9caf9.tar.gz emacs-b2e2128745a00e06cb714bb3f47829f036a9caf9.tar.bz2 emacs-b2e2128745a00e06cb714bb3f47829f036a9caf9.zip |
Use lexical-binding in webjump.el and add tests
* lisp/net/webjump.el: Use lexical-binding.
(webjump-read-url-choice): Remove redundant 'function' around lambda.
* test/lisp/net/webjump-tests.el: New file with tests for webjump.el.
Diffstat (limited to 'lisp/net/webjump.el')
-rw-r--r-- | lisp/net/webjump.el | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lisp/net/webjump.el b/lisp/net/webjump.el index 6edd03c39cc..8bb156199c5 100644 --- a/lisp/net/webjump.el +++ b/lisp/net/webjump.el @@ -1,4 +1,4 @@ -;;; webjump.el --- programmable Web hotlist +;;; webjump.el --- programmable Web hotlist -*- lexical-binding: t; -*- ;; Copyright (C) 1996-1997, 2001-2020 Free Software Foundation, Inc. @@ -323,8 +323,7 @@ Please submit bug reports and other feedback to the author, Neil W. Van Dyke (defun webjump-read-url-choice (what urls &optional default) ;; Note: Convert this to use `webjump-read-choice' someday. - (let* ((completions (mapcar (function (lambda (n) (cons n n))) - urls)) + (let* ((completions (mapcar (lambda (n) (cons n n)) urls)) (input (completing-read (concat what ;;(if default " (RET for default)" "") ": ") |