From 9b20af5934909221f47eb1603c5bf6e566b96eec Mon Sep 17 00:00:00 2001 From: "Toby S. Cubitt" Date: Sat, 5 May 2012 12:38:48 +0200 Subject: [PATCH] trie.el, tNFA.el, dict-tree.el: minor package header and autoload fixes * trie.el: remove emacs version dependency. * tNFA.el: add missing autoload cookies. * dict-tree.el: minor change to package description, to match the other data structure packages. --- packages/dict-tree/dict-tree.el | 2 +- packages/tNFA/tNFA.el | 2 ++ packages/trie/trie.el | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/packages/dict-tree/dict-tree.el b/packages/dict-tree/dict-tree.el index fe3fbe2fc..b51f7aa1b 100644 --- a/packages/dict-tree/dict-tree.el +++ b/packages/dict-tree/dict-tree.el @@ -1,4 +1,4 @@ -;;; dict-tree.el --- Dictionary data structure package +;;; dict-tree.el --- Dictionary data structure ;; Copyright (C) 2004-2012 Free Software Foundation, Inc diff --git a/packages/tNFA/tNFA.el b/packages/tNFA/tNFA.el index 7e8b1697f..8ef368263 100644 --- a/packages/tNFA/tNFA.el +++ b/packages/tNFA/tNFA.el @@ -464,6 +464,7 @@ ;;; ================================================================ ;;; Regexp -> tNFA +;;;###autoload (defun* tNFA-from-regexp (regexp &key (test 'eq)) "Create a tagged NFA that recognizes the regular expression REGEXP. The return value is the initial state of the tagged NFA. @@ -1047,6 +1048,7 @@ POS in a string." ;;; ================================================================ ;;; tNFA matching +;;;###autoload (defun* tNFA-regexp-match (regexp string &key (test 'eq)) "Return non-nil if STRING matches REGEXP, nil otherwise. Sets the match data if there was a match; see `match-beginning', diff --git a/packages/trie/trie.el b/packages/trie/trie.el index ff8907c82..509887c9b 100644 --- a/packages/trie/trie.el +++ b/packages/trie/trie.el @@ -6,7 +6,7 @@ ;; Version: 0.2.5 ;; Keywords: extensions, matching, data structures ;; trie, ternary search tree, tree, completion, regexp -;; Package-Requires: ((emacs "24.1") (tNFA "0.1.1") (heap "0.3")) +;; 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 -- 2.39.2