Author: Tassilo Horn
Date: Jul 17, 2007 00:40
...,7 @@ (progn (setq matches (anything-get-cached-candidates source)) (if (> (length matches) anything-candidate-number-limit) - (setq matches + (setq matches (subseq matches 0 anything-candidate-number-limit)))) (let ((item-count 0)) @@ -445,7 +458,7 @@ (funcall insert-function match) (...
|