branch: externals/heap commit 227de6110b79ffeeba07c133ee3252d3f1ff757f Author: Toby Cubitt <toby-predict...@dr-qubit.org> Commit: tsc25 <ts...@cantab.net>
Version 0.7 of the predictive completion package. First to include auto-overlays. --- heap.el | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/heap.el b/heap.el index 7b8cb73..f7e5658 100644 --- a/heap.el +++ b/heap.el @@ -1,10 +1,10 @@ ;;; heap.el --- heap (a.k.a. priority queue) data structure package -;; Copyright (C) 2004 Toby Cubitt +;; Copyright (C) 2004 2005 Toby Cubitt ;; Author: Toby Cubitt -;; Version: 0.1 +;; Version: 0.1.1 ;; Keywords: heap, priority queue ;; This file is part of the Emacs Predictive Completion package. @@ -44,7 +44,11 @@ ;;; Change log: ;; -;; version 0.1: initial release +;; Version 0.1.1 +;; * added cl dependency +;; +;; version 0.1 +;; * initial release @@ -52,6 +56,10 @@ (provide 'heap) +;; the only common lisp function required in `subseq', so this dependency +;; should probably be removed +(require 'cl) + ;;; ================================================================