branch: externals/org-contacts
commit 6a7145516d3d4aa74bf5163e999777e1054e16cc
Author: stardiviner <[email protected]>
Commit: stardiviner <[email protected]>
Fix file has no `lexical-binding` directive on its first line
---
test-org-contacts.el | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
diff --git a/test-org-contacts.el b/test-org-contacts.el
index 9feedb5555..a2de7493c2 100644
--- a/test-org-contacts.el
+++ b/test-org-contacts.el
@@ -1,3 +1,14 @@
+;;; test-org-contacts.el --- org-contacts testing -*- lexical-binding: t; -*-
+;; -*- coding: utf-8 -*-
+
+;; Copyright (C) 2020-2021 Free Software Foundation, Inc.
+
+;;; Commentary:
+
+
+
+;;; Code:
+
(require 'ert)
@@ -51,3 +62,9 @@
;; (if (string-match regexp-rule pvalue)
;; (match-string 1 pvalue)
;; pvalue))
+
+
+
+(provide 'test-org-contacts)
+
+;;; test-org-contacts.el ends here