[Pkg-jed-commit] r359 - in jed/branches/0.99.19: . patches

Jörg Sommer jo-guest at costa.debian.org
Sun Aug 6 18:20:10 UTC 2006


Author: jo-guest
Date: 2006-08-06 18:20:09 +0000 (Sun, 06 Aug 2006)
New Revision: 359

Added:
   jed/branches/0.99.19/patches/slmode-function-popup.dpatch
Modified:
   jed/branches/0.99.19/changelog
   jed/branches/0.99.19/patches/00list
Log:
* 0.99.19/patches/slmode-function-popup 0.99.19/patches/00list
  + Added an patch to remove the keywords found as functions from the
    menu popup.

* 0.99.19/changelog
  + Added the entry for the bug fix of get_color(). #378396


Modified: jed/branches/0.99.19/changelog
===================================================================
--- jed/branches/0.99.19/changelog	2006-07-20 10:07:34 UTC (rev 358)
+++ jed/branches/0.99.19/changelog	2006-08-06 18:20:09 UTC (rev 359)
@@ -1,6 +1,7 @@
 jed (0.99.19-1) experimental; urgency=low
 
   * New upstream release
+    + The get_color() returns "default" in batch mode. (closes: #378396)
 
  -- Rafael Laboissiere <rafael at debian.org>  Mon, 17 Jul 2006 19:48:13 +0200
 

Modified: jed/branches/0.99.19/patches/00list
===================================================================
--- jed/branches/0.99.19/patches/00list	2006-07-20 10:07:34 UTC (rev 358)
+++ jed/branches/0.99.19/patches/00list	2006-08-06 18:20:09 UTC (rev 359)
@@ -12,3 +12,5 @@
   /* libgpm is not supported by these architectures: #345268 #95843 */
 60_gpm-mouse-support
 #endif
+
+slmode-function-popup

Added: jed/branches/0.99.19/patches/slmode-function-popup.dpatch
===================================================================
--- jed/branches/0.99.19/patches/slmode-function-popup.dpatch	2006-07-20 10:07:34 UTC (rev 358)
+++ jed/branches/0.99.19/patches/slmode-function-popup.dpatch	2006-08-06 18:20:09 UTC (rev 359)
@@ -0,0 +1,25 @@
+#! /bin/sh /usr/share/dpatch/dpatch-run
+## slmode-function-popup.dpatch by Jörg Sommer <joerg at alea.gnuu.de>
+##
+## DP: In SLang mode the menu Mode->Functions includes if, while or for if they
+## DP: occur outside of a function (which is valid).
+
+ at DPATCH@
+diff -urNad branches~/lib/cmode.sl branches/lib/cmode.sl
+--- branches~/lib/cmode.sl	2006-02-13 18:51:58.000000000 +0100
++++ branches/lib/cmode.sl	2006-07-28 15:11:14.298231102 +0200
+@@ -1057,7 +1057,13 @@
+ 	       continue;
+ 
+ 	     c_bskip_over_comment (1);
+-	     names[bextract_identifier ()] = what_line ();
++
++             % In SLang you can write statements at the same level like
++             % functions they look like functions but aren't it.
++             variable id = bextract_identifier ();
++             switch (id)
++             { case "if" or case "while" or case "for": }
++             { names[id] = what_line (); }
+ 	  }
+      }
+ }


Property changes on: jed/branches/0.99.19/patches/slmode-function-popup.dpatch
___________________________________________________________________
Name: svn:executable
   + *




More information about the Pkg-jed-commit mailing list