From 467154ad0614ed1d8480d8245edb53d2f7483171 Mon Sep 17 00:00:00 2001 From: Andrey Kotlarski Date: Wed, 10 Apr 2013 02:10:00 +0300 Subject: [PATCH] Add documentation. --- vlfi.el | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/vlfi.el b/vlfi.el index db15580..d6da88b 100644 --- a/vlfi.el +++ b/vlfi.el @@ -363,7 +363,8 @@ successful. Return nil if nothing found." (delete-overlay overlay))))) (defun vlfi-re-search-forward (regexp count) - "Search forward for REGEXP prefix COUNT number of times." + "Search forward for REGEXP prefix COUNT number of times. +Search is performed chunk by chunk in `vlfi-batch-size' memory." (interactive (list (read-regexp "Search whole file" (if regexp-history (car regexp-history)) @@ -372,7 +373,8 @@ successful. Return nil if nothing found." (vlfi-re-search regexp count nil)) (defun vlfi-re-search-backward (regexp count) - "Search backward for REGEXP prefix COUNT number of times." + "Search backward for REGEXP prefix COUNT number of times. +Search is performed chunk by chunk in `vlfi-batch-size' memory." (interactive (list (read-regexp "Search whole file backward" (if regexp-history (car regexp-history))