changeset 8942:c4383701e10d

use doc-cache instead of DOC for doc cache file name
author John W. Eaton <jwe@octave.org>
date Mon, 09 Mar 2009 16:31:13 -0400
parents b8ed0262b11e
children 4a312440b262
files scripts/ChangeLog scripts/pkg/pkg.m
diffstat 2 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/ChangeLog	Mon Mar 09 14:52:59 2009 -0400
+++ b/scripts/ChangeLog	Mon Mar 09 16:31:13 2009 -0400
@@ -2,8 +2,8 @@
 
 	* help/lookfor.m (search_cache): Also match function names.
 
-	* help/gen_doc_cache.m, help/lookfor.m: Use doc-cache instead of
-	DOC for doc cache file.
+	* pkg/pkg.m, help/gen_doc_cache.m, help/lookfor.m:
+	Use doc-cache instead of DOC for doc cache file.
 
 2009-03-09  Jaroslav Hajek  <highegg@gmail.com>
 
--- a/scripts/pkg/pkg.m	Mon Mar 09 14:52:59 2009 -0400
+++ b/scripts/pkg/pkg.m	Mon Mar 09 16:31:13 2009 -0400
@@ -1587,7 +1587,7 @@
 function generate_lookfor_cache (desc)
   dirs = split_by (genpath (desc.dir), pathsep ());
   for i = 1 : length (dirs)
-    gen_doc_cache (fullfile (dirs{i}, "DOC"), dirs{i});
+    gen_doc_cache (fullfile (dirs{i}, "doc-cache"), dirs{i});
   endfor
 endfunction