]> code.delx.au - gnu-emacs-elpa/commitdiff
trie.el, tNFA.el, dict-tree.el: minor package header and autoload fixes
authorToby S. Cubitt <tsc25@cantab.net>
Sat, 5 May 2012 10:38:48 +0000 (12:38 +0200)
committerToby S. Cubitt <tsc25@cantab.net>
Sat, 5 May 2012 10:38:48 +0000 (12:38 +0200)
* 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
packages/tNFA/tNFA.el
packages/trie/trie.el

index fe3fbe2fcbc7df33dc22333bb640c167aa0eeef6..b51f7aa1be5d140ce1364d4d7d1af2816afb821c 100644 (file)
@@ -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
 
index 7e8b1697f090ff19f39c8f6a1a9a5c79791d8ccc..8ef36826360317ee4c163980c2fb8d9128061d84 100644 (file)
 ;;; ================================================================
 ;;;                        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',
index ff8907c82a1d841a21e54b09665c15fb329ccf05..509887c9b70f75e0e0b9d11e749396af54dc5f39 100644 (file)
@@ -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