[Pkg-jed-commit] r929 - jed-extra/trunk/debian

Guenter Milde milde-guest at alioth.debian.org
Mon Oct 15 09:28:25 UTC 2007


tags 446272 pending
thanks

Author: milde-guest
Date: 2007-10-15 09:28:25 +0000 (Mon, 15 Oct 2007)
New Revision: 929

Modified:
   jed-extra/trunk/debian/changelog
   jed-extra/trunk/debian/jed-extra-preparse.sl
   jed-extra/trunk/debian/rules
Log:
debian/jed-extra-preparse.sl: fix #446272 in a jed-extra specific manner
debian/rules: take the upstream tarball from the release URL


Modified: jed-extra/trunk/debian/changelog
===================================================================
--- jed-extra/trunk/debian/changelog	2007-10-15 09:03:42 UTC (rev 928)
+++ jed-extra/trunk/debian/changelog	2007-10-15 09:28:25 UTC (rev 929)
@@ -5,8 +5,13 @@
      * filter-buffer.sl: delete_hidden_lines() fixed (closes: #439895)
      * more bugfixes,
      * better aspell support in ispell.sl with dictionaries-common >> 0.85.2
+     * Do not use DFA syntax highlight in utf-8 mode as it does not work with
+       multi-byte chars. (You can still enable it in your ~/.jed/jed.rc file
+       with ``enable_dfa_syntax_for_mode("<modename>");`` lines)
   * Suggest packages slang-sqlite, slang-expat (closes: #440262),
     and slang-wildcard (closes: #440263)
+  * debian/jed-extra-preparse.sl:  Avoid the creation of ini.sl~ files 
+    (closes: #446272)
 
   [ Rafael Laboissiere ]
   * debian/rules: Make the tm.sed script executable

Modified: jed-extra/trunk/debian/jed-extra-preparse.sl
===================================================================
--- jed-extra/trunk/debian/jed-extra-preparse.sl	2007-10-15 09:03:42 UTC (rev 928)
+++ jed-extra/trunk/debian/jed-extra-preparse.sl	2007-10-15 09:28:25 UTC (rev 929)
@@ -35,6 +35,9 @@
                            "hyperman.sl",
                            "cal.sl"];
 
+% Do not save backup copies of the generated files
+No_Backups = 1;
+
 % preparse modes and generate ini.sl files with autoloads and completions for
 % public functions
 update_ini(lib_dir);
@@ -48,3 +51,5 @@
 
 % byte compile color files
 byte_compile_libdir(colors_dir);
+
+% TODO: create DFA syntax highlight cache files

Modified: jed-extra/trunk/debian/rules
===================================================================
--- jed-extra/trunk/debian/rules	2007-10-15 09:03:42 UTC (rev 928)
+++ jed-extra/trunk/debian/rules	2007-10-15 09:28:25 UTC (rev 929)
@@ -48,8 +48,8 @@
 # Choose source
 # -------------
 
-# UPSTREAM_URL = $(RELEASE_URL)
-UPSTREAM_URL = $(PRERELEASE_URL)
+UPSTREAM_URL = $(RELEASE_URL)
+# UPSTREAM_URL = $(PRERELEASE_URL)
 # UPSTREAM_URL = $(LOCAL_RELEASE_URL)
 
 # Rules




More information about the Pkg-jed-commit mailing list