Bug#773585: php-elisp: Wrong indention of function arguments in subsequent lines

2018-02-07 Thread Ola Lundqvist
Hi Thank you! Sent from a phone Den 7 feb 2018 16:48 skrev "Roland Rosenfeld" : > On Mi, 07 Feb 2018, Roland Rosenfeld wrote: > > > Just for the records: https://github.com/ejmr/php-mode/issues/128 > > mentions the same issue since 2013-09-07, but is still open. > > I just

Bug#773585: php-elisp: Wrong indention of function arguments in subsequent lines

2018-02-07 Thread Roland Rosenfeld
On Mi, 07 Feb 2018, Roland Rosenfeld wrote: > Just for the records: https://github.com/ejmr/php-mode/issues/128 > mentions the same issue since 2013-09-07, but is still open. I just tried to build 1.18.4 (current github version) as a Debian package. This builds without any changes, throws some

Bug#773585: php-elisp: Wrong indention of function arguments in subsequent lines

2018-02-07 Thread Roland Rosenfeld
On Sa, 20 Dez 2014, Joey Schulze wrote: > Package: php-elisp > Version: 1.13.5-1 > Severity: normal > the current version of php-mode indents function arguments that are > written in subsequent lines in as follows: > > $var = array('value 0', > 'value 1', > 'value 2'); > > An earlier version

Bug#773585: php-elisp: Wrong indention of function arguments in subsequent lines

2014-12-20 Thread Joey Schulze
Package: php-elisp Version: 1.13.5-1 Severity: normal Dear Maintainer, the current version of php-mode indents function arguments that are written in subsequent lines in as follows: $var = array('value 0', 'value 1', 'value 2'); An earlier version of php-mode indented the same code different

Bug#773585: php-elisp: Wrong indention of function arguments in subsequent lines

2014-12-20 Thread Ola Lundqvist
Hi Please try drupal mode or any other of the variants. I think the command is enable-(mode name) / Ola Inguza Technology AB Sent from a phone Den 20 dec 2014 13:30 skrev Joey Schulze j...@infodrom.org: Package: php-elisp Version: 1.13.5-1 Severity: normal Dear Maintainer, the current

Bug#773585: php-elisp: Wrong indention of function arguments in subsequent lines

2014-12-20 Thread Martin Schulze
Hi Ola! Ola Lundqvist wrote: Hi Please try drupal mode or any other of the variants. How? I think the command is enable-(mode name) In interactive mode M-x shows: Possible completions are: enable-command enable-flow-control enable-theme Regards Joey -- In the beginning was

Bug#773585: php-elisp: Wrong indention of function arguments in subsequent lines

2014-12-20 Thread Ola Lundqvist
I'll check. Inguza Technology AB Sent from a phone Den 20 dec 2014 14:57 skrev Martin Schulze j...@infodrom.org: Hi Ola! Ola Lundqvist wrote: Hi Please try drupal mode or any other of the variants. How? I think the command is enable-(mode name) In interactive mode M-x shows:

Bug#773585: php-elisp: Wrong indention of function arguments in subsequent lines

2014-12-20 Thread Ola Lundqvist
Hi Now I have checked. I missed the php- prefix. The interactive mode M-x commands are: php-enable-...-coding-style In at least drupal coding style it works as you expect. I do not know why it does not work that way with the other ones. // Ola On Sat, Dec 20, 2014 at 2:53 PM, Martin Schulze

Bug#773585: php-elisp: Wrong indention of function arguments in subsequent lines

2014-12-20 Thread Ola Lundqvist
Hi again After some more investigation I realize that you are not referring to function calls but rather arrays. In case you write like this: array( 'a', 'b'); It will indent correctly. It is only, when you have the first item on the same line as the array statement, that you get the

Bug#773585: php-elisp: Wrong indention of function arguments in subsequent lines

2014-12-20 Thread Joey Schulze
Hi! Ola Lundqvist wrote: Hi again After some more investigation I realize that you are not referring to function calls but rather arrays. The array creation function array is a function according to PHP. Nevertheless php-mode indented the same way for other function calls. In case you