From 05dc6794f1eaa4a45038445b8b819bc763aefca5 Mon Sep 17 00:00:00 2001 From: Mark Oteiza Date: Wed, 10 Aug 2016 00:42:40 -0400 Subject: [PATCH] Turn on lexical-binding in json.el Measuring with (benchmark-run 100 (json-read-file "foobar.json")) showed 12-31% reduction in execution time. * lisp/json.el: Turn on lexical-binding. --- lisp/json.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/json.el b/lisp/json.el index 1eabe0fa33c..fdac8d9a826 100644 --- a/lisp/json.el +++ b/lisp/json.el @@ -1,4 +1,4 @@ -;;; json.el --- JavaScript Object Notation parser / generator +;;; json.el --- JavaScript Object Notation parser / generator -*- lexical-binding: t -*- ;; Copyright (C) 2006-2016 Free Software Foundation, Inc. -- 2.39.2