emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[ELPA-diffs] /srv/bzr/emacs/elpa r213: trie.el, tNFA.el, dict-tree.el: m


From: Toby S. Cubitt
Subject: [ELPA-diffs] /srv/bzr/emacs/elpa r213: trie.el, tNFA.el, dict-tree.el: minor package header and autoload fixes
Date: Sat, 05 May 2012 12:38:48 +0200
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 213
committer: Toby S. Cubitt <address@hidden>
branch nick: elpa
timestamp: Sat 2012-05-05 12:38:48 +0200
message:
  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.
modified:
  packages/dict-tree/dict-tree.el
  packages/tNFA/tNFA.el
  packages/trie/trie.el
=== modified file 'packages/dict-tree/dict-tree.el'
--- a/packages/dict-tree/dict-tree.el   2012-04-30 18:41:06 +0000
+++ b/packages/dict-tree/dict-tree.el   2012-05-05 10:38:48 +0000
@@ -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
 

=== modified file 'packages/tNFA/tNFA.el'
--- a/packages/tNFA/tNFA.el     2012-04-30 18:41:06 +0000
+++ b/packages/tNFA/tNFA.el     2012-05-05 10:38:48 +0000
@@ -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 @@
 ;;; ================================================================
 ;;;                       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',

=== modified file 'packages/trie/trie.el'
--- a/packages/trie/trie.el     2012-04-30 18:41:06 +0000
+++ b/packages/trie/trie.el     2012-05-05 10:38:48 +0000
@@ -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
 


reply via email to

[Prev in Thread] Current Thread [Next in Thread]