Bug#525667: php-elisp: Various highlighting bugs

2009-04-26 Thread Thue Janus Kristensen
Package: php-elisp
Version: 1.4.0-2
Severity: normal

A bunch of markup errors:

?php
  //'b' wrongly marked yellow
  /*$a-b*/

  //'b' wrongly marked yellow
a-b;

//'class' wrongly marked cyan, '_name' wrongly marked green
class_name();

//'continue' wrongly marked cyan
function continue_a() {}

//'wrongly' wrongly marked purple
/*continue wrongly marked cyan*/

//'a' wrongly marked purple
/*case a*/

//'instanceof' should be cyan, 'b' should be green
$a instanceof b;

//'Array' should be green
function a(Array $b) {}

//'static' should be cyan
private static function a() {}

//'a_false' should be blue
function a_false() {}
//'a_true' should be blue
function a_true() {}

//'a_false' should be yellow
$a_false;
//'a_true' should be yellow
$a_true;

//'c' should be green
class a implements b,c {}

//'a' should be green
a::$b;

?

Regards, Thue

-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.26-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_DK.UTF-8, LC_CTYPE=en_DK.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages php-elisp depends on:
ii  emacs [emacsen]   22.3+1-1   The GNU Emacs editor (metapackage)
ii  emacs22 [emacsen] 22.3+1-1   The GNU Emacs editor

php-elisp recommends no packages.

Versions of packages php-elisp suggests:
pn  php4 | php3   none (no description available)

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#525667: php-elisp: Various highlighting bugs

2009-04-26 Thread Ola Lundqvist
Hi

Yes you are right. I should probably orphan this package as neither I nor
Pontus have had any time for it.

Best regards,

// Ola

On Sun, Apr 26, 2009 at 02:36:55PM +0200, Thue Janus Kristensen wrote:
 Package: php-elisp
 Version: 1.4.0-2
 Severity: normal
 
 A bunch of markup errors:
 
 ?php
   //'b' wrongly marked yellow
   /*$a-b*/
 
   //'b' wrongly marked yellow
 a-b;
 
 //'class' wrongly marked cyan, '_name' wrongly marked green
 class_name();
 
 //'continue' wrongly marked cyan
 function continue_a() {}
 
 //'wrongly' wrongly marked purple
 /*continue wrongly marked cyan*/
 
 //'a' wrongly marked purple
 /*case a*/
 
 //'instanceof' should be cyan, 'b' should be green
 $a instanceof b;
 
 //'Array' should be green
 function a(Array $b) {}
 
 //'static' should be cyan
 private static function a() {}
 
 //'a_false' should be blue
 function a_false() {}
 //'a_true' should be blue
 function a_true() {}
 
 //'a_false' should be yellow
 $a_false;
 //'a_true' should be yellow
 $a_true;
 
 //'c' should be green
 class a implements b,c {}
 
 //'a' should be green
 a::$b;
 
 ?
 
 Regards, Thue
 
 -- System Information:
 Debian Release: squeeze/sid
   APT prefers unstable
   APT policy: (500, 'unstable'), (500, 'testing'), (1, 'experimental')
 Architecture: amd64 (x86_64)
 
 Kernel: Linux 2.6.26-1-amd64 (SMP w/4 CPU cores)
 Locale: LANG=en_DK.UTF-8, LC_CTYPE=en_DK.UTF-8 (charmap=UTF-8)
 Shell: /bin/sh linked to /bin/bash
 
 Versions of packages php-elisp depends on:
 ii  emacs [emacsen]   22.3+1-1   The GNU Emacs editor 
 (metapackage)
 ii  emacs22 [emacsen] 22.3+1-1   The GNU Emacs editor
 
 php-elisp recommends no packages.
 
 Versions of packages php-elisp suggests:
 pn  php4 | php3   none (no description available)
 
 -- no debconf information
 
 
 

-- 
 - Ola Lundqvist ---
/  o...@debian.org Annebergsslingan 37  \
|  o...@inguza.com  654 65 KARLSTAD  |
|  http://inguza.com/  +46 (0)70-332 1551   |
\  gpg/f.p.: 7090 A92B 18FE 7994 0C36  4FE4 18A1 B1CF 0FE5 3DD9 /
 ---



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#525667: php-elisp: Various highlighting bugs

2009-04-26 Thread Thue Janus Kristensen
I just tested version 1.5 from upstream, and some of the bugs are fixed in
that version.

Here are the remaining bugs (a few new ones added)

?php

//'b' wrongly marked yellow
/*$a-b*/
a-b;

//'aa' wrongly marked purple
/*continue aa*/
/*break aa*/
/*case aa*/
continue aa;
break aa;
case aa;
'continue aa';

//'b' should be green
$a instanceof b;

//Why is $that purple?
$that;

//b wrongly white
/*$a-b()*/
$a-b()

//'c' should be green
class a implements b,c {}

?

Regards, Thue

On Sun, Apr 26, 2009 at 10:25 PM, Ola Lundqvist o...@debian.org wrote:

 Hi

 Yes you are right. I should probably orphan this package as neither I nor
 Pontus have had any time for it.

 Best regards,

 // Ola

 On Sun, Apr 26, 2009 at 02:36:55PM +0200, Thue Janus Kristensen wrote:
  Package: php-elisp
  Version: 1.4.0-2
  Severity: normal
 
  A bunch of markup errors:
 
  ?php
//'b' wrongly marked yellow
/*$a-b*/
 
//'b' wrongly marked yellow
  a-b;
 
  //'class' wrongly marked cyan, '_name' wrongly marked green
  class_name();
 
  //'continue' wrongly marked cyan
  function continue_a() {}
 
  //'wrongly' wrongly marked purple
  /*continue wrongly marked cyan*/
 
  //'a' wrongly marked purple
  /*case a*/
 
  //'instanceof' should be cyan, 'b' should be green
  $a instanceof b;
 
  //'Array' should be green
  function a(Array $b) {}
 
  //'static' should be cyan
  private static function a() {}
 
  //'a_false' should be blue
  function a_false() {}
  //'a_true' should be blue
  function a_true() {}
 
  //'a_false' should be yellow
  $a_false;
  //'a_true' should be yellow
  $a_true;
 
  //'c' should be green
  class a implements b,c {}
 
  //'a' should be green
  a::$b;
 
  ?
 
  Regards, Thue
 
  -- System Information:
  Debian Release: squeeze/sid
APT prefers unstable
APT policy: (500, 'unstable'), (500, 'testing'), (1, 'experimental')
  Architecture: amd64 (x86_64)
 
  Kernel: Linux 2.6.26-1-amd64 (SMP w/4 CPU cores)
  Locale: LANG=en_DK.UTF-8, LC_CTYPE=en_DK.UTF-8 (charmap=UTF-8)
  Shell: /bin/sh linked to /bin/bash
 
  Versions of packages php-elisp depends on:
  ii  emacs [emacsen]   22.3+1-1   The GNU Emacs editor
 (metapackage)
  ii  emacs22 [emacsen] 22.3+1-1   The GNU Emacs editor
 
  php-elisp recommends no packages.
 
  Versions of packages php-elisp suggests:
  pn  php4 | php3   none (no description available)
 
  -- no debconf information
 
 
 

 --
  - Ola Lundqvist ---
 /  o...@debian.org Annebergsslingan 37  \
 |  o...@inguza.com  654 65 KARLSTAD  |
 |  http://inguza.com/  +46 (0)70-332 1551   |
 \  gpg/f.p.: 7090 A92B 18FE 7994 0C36  4FE4 18A1 B1CF 0FE5 3DD9 /
  ---



Bug#525667: php-elisp: Various highlighting bugs

2009-04-26 Thread Ola Lundqvist
Good to know. Thanks.

Best regards,

// Ola

On Sun, Apr 26, 2009 at 10:34:21PM +0200, Thue Janus Kristensen wrote:
 
I just tested version 1.5 from upstream, and some of the bugs are fixed in
that version.
Here are the remaining bugs (a few new ones added)
?php
//'b' wrongly marked yellow
/*$a-b*/
a-b;
//'aa' wrongly marked purple
/*continue aa*/
/*break aa*/
/*case aa*/
continue aa;
break aa;
case aa;
'continue aa';
//'b' should be green
$a instanceof b;
//Why is $that purple?
$that;
//b wrongly white
/*$a-b()*/
$a-b()
//'c' should be green
class a implements b,c {}
?
Regards, Thue
 
On Sun, Apr 26, 2009 at 10:25 PM, Ola Lundqvist [1]o...@debian.org wrote:
 
  Hi
  Yes you are right. I should probably orphan this package as neither I nor
  Pontus have had any time for it.
  Best regards,
  // Ola
  On Sun, Apr 26, 2009 at 02:36:55PM +0200, Thue Janus Kristensen wrote:
   Package: php-elisp
   Version: 1.4.0-2
   Severity: normal
  
   A bunch of markup errors:
  
   ?php
 //'b' wrongly marked yellow
 /*$a-b*/
  
 //'b' wrongly marked yellow
   a-b;
  
   //'class' wrongly marked cyan, '_name' wrongly marked green
   class_name();
  
   //'continue' wrongly marked cyan
   function continue_a() {}
  
   //'wrongly' wrongly marked purple
   /*continue wrongly marked cyan*/
  
   //'a' wrongly marked purple
   /*case a*/
  
   //'instanceof' should be cyan, 'b' should be green
   $a instanceof b;
  
   //'Array' should be green
   function a(Array $b) {}
  
   //'static' should be cyan
   private static function a() {}
  
   //'a_false' should be blue
   function a_false() {}
   //'a_true' should be blue
   function a_true() {}
  
   //'a_false' should be yellow
   $a_false;
   //'a_true' should be yellow
   $a_true;
  
   //'c' should be green
   class a implements b,c {}
  
   //'a' should be green
   a::$b;
  
   ?
  
   Regards, Thue
  
   -- System Information:
   Debian Release: squeeze/sid
 APT prefers unstable
 APT policy: (500, 'unstable'), (500, 'testing'), (1, 'experimental')
   Architecture: amd64 (x86_64)
  
   Kernel: Linux 2.6.26-1-amd64 (SMP w/4 CPU cores)
   Locale: LANG=en_DK.UTF-8, LC_CTYPE=en_DK.UTF-8 (charmap=UTF-8)
   Shell: /bin/sh linked to /bin/bash
  
   Versions of packages php-elisp depends on:
   ii  emacs [emacsen]   22.3+1-1   The GNU Emacs editor
  (metapackage)
   ii  emacs22 [emacsen] 22.3+1-1   The GNU Emacs editor
  
   php-elisp recommends no packages.
  
   Versions of packages php-elisp suggests:
   pn  php4 | php3   none (no description available)
  
   -- no debconf information
  
  
  
  --
   - Ola Lundqvist ---
  /  [2]o...@debian.org Annebergsslingan 37  \
  |  [3]...@inguza.com  654 65 KARLSTAD  |
  |  [4]http://inguza.com/  +46 (0)70-332 1551   |
  \  gpg/f.p.: 7090 A92B 18FE 7994 0C36  4FE4 18A1 B1CF 0FE5 3DD9 /
   ---
 
 Referenser
 
1. mailto:o...@debian.org
2. mailto:o...@debian.org
3. mailto:o...@inguza.com
4. http://inguza.com/

-- 
 --- Inguza Technology AB --- MSc in Information Technology 
/  o...@inguza.comAnnebergsslingan 37\
|  o...@debian.org   654 65 KARLSTAD|
|  http://inguza.com/Mobile: +46 (0)70-332 1551 |
\  gpg/f.p.: 7090 A92B 18FE 7994 0C36 4FE4 18A1 B1CF 0FE5 3DD9  /
 ---



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org