branch: externals/trie
commit 63da3b1adc4c1f4b4de14c8d18fd890ff80e3f9c
Author: Stefan Monnier <[email protected]>
Commit: Stefan Monnier <[email protected]>
* trie.el: Fix header which likely suffered a `M-q` accident
---
.gitignore | 3 +++
trie.el | 16 +++++++++-------
2 files changed, 12 insertions(+), 7 deletions(-)
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..cb492a1
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,3 @@
+/trie-pkg.el
+/trie-autoloads.el
+*.elc
diff --git a/trie.el b/trie.el
index ae4b644..f82b7ef 100644
--- a/trie.el
+++ b/trie.el
@@ -1,12 +1,14 @@
;;; trie.el --- Trie data structure -*- lexical-binding: t; -*-
-;; Copyright (C) 2008-2010, 2012, 2014, 2017-2018 Free Software Foundation,
Inc
-
-;; Author: Toby Cubitt <[email protected]> Version: 0.5 Keywords:
-;; extensions, matching, data structures trie, ternary search tree, tree,
-;; completion, regexp Package-Requires: ((tNFA "0.1.1") (heap "0.3")) URL:
-;; http://www.dr-qubit.org/emacs.php Repository:
-;; http://www.dr-qubit.org/git/predictive.git
+;; Copyright (C) 2008-2020 Free Software Foundation, Inc
+
+;; Author: Toby Cubitt <[email protected]>
+;; Version: 0.5
+;; Keywords: extensions, matching, data structures
+;; trie, ternary search tree, tree, completion, regexp
+;; Package-Requires: ((tNFA "0.1.1") (heap "0.3"))
+;; URL: http://www.dr-qubit.org/emacs.php
+;; Repository: http://www.dr-qubit.org/git/predictive.git
;; This file is part of Emacs.
;;