[Pkg-jed-commit] r238 - trunk/packages/jed-extra/debian

Guenter Milde milde-guest at costa.debian.org
Tue Dec 13 09:46:44 UTC 2005


Author: milde-guest
Date: 2005-12-13 09:46:43 +0000 (Tue, 13 Dec 2005)
New Revision: 238

Modified:
   trunk/packages/jed-extra/debian/contents.txt
   trunk/packages/jed-extra/debian/jed-extra-preparse.sl
Log:
* bugfix: Add jed-extra/utils/ to the library path  -- now it works
* do not create add-completion's for functions in jed-extra/utils/
* classify tm 'mode' as 'Addition' (instead of Utils), we want autoloads


Modified: trunk/packages/jed-extra/debian/contents.txt
===================================================================
--- trunk/packages/jed-extra/debian/contents.txt	2005-12-09 15:24:21 UTC (rev 237)
+++ trunk/packages/jed-extra/debian/contents.txt	2005-12-13 09:46:43 UTC (rev 238)
@@ -92,7 +92,7 @@
 X   tar            interface to GNU tar
 A   temabbrv       On request replaces the word at cursor with a user-defined template
 X   templates      Open templates and do some replacements
-U   tm             TM documentation parser and TM creation tools
+A   tm             TM documentation parser and TM creation tools
 X   tree           Recursive directory listing utility
 X   turbo          dynamic word completion (like in StarOffice)
 U   txtutils       Tools for text processing (marking, string processing, formatting)

Modified: trunk/packages/jed-extra/debian/jed-extra-preparse.sl
===================================================================
--- trunk/packages/jed-extra/debian/jed-extra-preparse.sl	2005-12-09 15:24:21 UTC (rev 237)
+++ trunk/packages/jed-extra/debian/jed-extra-preparse.sl	2005-12-13 09:46:43 UTC (rev 238)
@@ -1,13 +1,15 @@
 % -*- slang -*-
 
 % Location of the jed-extra package's library dir
-private variable libdir = "/usr/share/jed/jed-extra";
-private variable drop_in_dir = path_concat(libdir, "drop-in");
+% private variable lib_dir = "/usr/share/jed/jed-extra";
+private variable lib_dir = "/home/milde/.jed/lib";
+private variable drop_in_dir = path_concat(lib_dir, "drop-in");
 private variable utils_dir = path_concat(lib_dir, "utils");
 private variable ex_dir = path_concat(lib_dir, "extra");
 
-% add the jed-extra library dir to the jed library path
-set_jed_library_path(libdir + "," + get_jed_library_path());
+% add the jed-extra libraries to the jed library path
+set_jed_library_path(sprintf("%s,%s,%s", 
+   utils_dir, lib_dir, get_jed_library_path()));
 
 require("make_ini");
 
@@ -17,10 +19,12 @@
                            "flyspell.sl",
                            "cal.sl"];
 
-update_ini(libdir);
+update_ini(lib_dir);
 update_ini(drop_in_dir);
 update_ini(ex_dir);
+
 Make_ini_Scope = 2;
+Make_ini_Add_Completions = 0;
 update_ini(utils_dir);
 
 # stop




More information about the Pkg-jed-commit mailing list