[Bug 228068] Re: Bluefish crashes when opening specific file

2008-05-19 Thread Launchpad Bug Tracker
This bug was fixed in the package bluefish - 1.0.7-5 --- bluefish (1.0.7-5) unstable; urgency=low * debian/rules (build, clean): Moved the config.* copy action to config.status. Files can further be removed by dh_clean. (config.status): According to the manuals, variables

[Bug 228068] Re: Bluefish crashes when opening specific file

2008-05-09 Thread Cesare Tirabassi
Interesting enough, I had these options on (I guess they are the default ones since I never touched them), but, even if I do change them to no and ' I still don't get a crash. -- Bluefish crashes when opening specific file https://bugs.launchpad.net/bugs/228068 You received this bug

[Bug 228068] Re: Bluefish crashes when opening specific file

2008-05-09 Thread Daniel Leidert
You never touched them? Well, I normally note, when pattern (and which) should be updated. What means even if I do change them to no ...? Change them to start- pattern-only with the following pattern. (\\|.)*? and try to reproduce the issue. -- Bluefish crashes when opening specific file

[Bug 228068] Re: Bluefish crashes when opening specific file

2008-05-09 Thread Cesare Tirabassi
OK, but then even a simple '*? its enough to make it crash. I'm still not getting what is your conclusion on this, is this a bug in bluefish or not? -- Bluefish crashes when opening specific file https://bugs.launchpad.net/bugs/228068 You received this bug notification because you are a member

[Bug 228068] Re: Bluefish crashes when opening specific file

2008-05-09 Thread Daniel Leidert
I hope, you used .*? because *? is not a regex. The first was used some years ago in bf and then changed to, what caused the segfault. I consider it a bad pattern in bluefish (and an update is waiting to be uploaded), for which we are responsible. -- Bluefish crashes when opening specific file

[Bug 228068] Re: Bluefish crashes when opening specific file

2008-05-09 Thread Cesare Tirabassi
Now I'm even more confused. Using the following regexes for the start pattern only of double quoted and single quoted strings: (\\|.)*? '(\\|.)*?' I'm not getting any crash when opening the above sample file. For what I can see all strings are highlighted correctly in green. -- Bluefish

[Bug 228068] Re: Bluefish crashes when opening specific file

2008-05-09 Thread Cesare Tirabassi
Its a typo in the previous comment, for single quoted string I used '(\\'|.)*?' not '(\\|.)*?' -- Bluefish crashes when opening specific file https://bugs.launchpad.net/bugs/228068 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. --

[Bug 228068] Re: Bluefish crashes when opening specific file

2008-05-08 Thread Cesare Tirabassi
I don't have any problem to open this file, perhaps its something specific to your settings or system. Can you make a backtrace? This could help us to pinpoint the issue: https://wiki.ubuntu.com/Backtrace ** Changed in: bluefish (Ubuntu) Status: New = Incomplete -- Bluefish crashes when

[Bug 228068] Re: Bluefish crashes when opening specific file

2008-05-08 Thread Daniel Leidert
Cesare, which architecture? Can you send me your .bluefish/ directory? Because I can easily reproduce the problem. Seems like an endless loop in libpcre and then leading to a segementation fault. -- Bluefish crashes when opening specific file https://bugs.launchpad.net/bugs/228068 You received

[Bug 228068] Re: Bluefish crashes when opening specific file

2008-05-08 Thread Cesare Tirabassi
Its amd64 for me, .bluefish attached. ** Attachment added: .bluefish compressed tarball http://launchpadlibrarian.net/14364840/bluefish.tgz -- Bluefish crashes when opening specific file https://bugs.launchpad.net/bugs/228068 You received this bug notification because you are a member of

[Bug 228068] Re: Bluefish crashes when opening specific file

2008-05-08 Thread JacobSteelsmith
I'm trying to add a useful backtrace but am unable to find the debugging symbols. -- Bluefish crashes when opening specific file https://bugs.launchpad.net/bugs/228068 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs

[Bug 228068] Re: Bluefish crashes when opening specific file

2008-05-08 Thread JacobSteelsmith
[EMAIL PROTECTED]:~$ cat /proc/cpuinfo processor : 0 vendor_id : AuthenticAMD cpu family : 6 model : 10 model name : AMD Athlon(tm) XP 3200+ stepping: 0 cpu MHz : 2199.386 cache size : 512 KB fdiv_bug: no hlt_bug : no f00f_bug

[Bug 228068] Re: Bluefish crashes when opening specific file

2008-05-08 Thread Daniel Leidert
So Jacob, this is an i386 architecture too (no amd64), right? I already have the backtrace. However: https://wiki.ubuntu.com/DebuggingProgramCrash -- Bluefish crashes when opening specific file https://bugs.launchpad.net/bugs/228068 You received this bug notification because you are a member of

[Bug 228068] Re: Bluefish crashes when opening specific file

2008-05-08 Thread JacobSteelsmith
Sure is. Not a 64 bit processor. -- Bluefish crashes when opening specific file https://bugs.launchpad.net/bugs/228068 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com

[Bug 228068] Re: Bluefish crashes when opening specific file

2008-05-08 Thread Daniel Leidert
Backtrace. ** Attachment added: backtrace http://launchpadlibrarian.net/14372113/gdb.txt -- Bluefish crashes when opening specific file https://bugs.launchpad.net/bugs/228068 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. --

[Bug 228068] Re: Bluefish crashes when opening specific file

2008-05-08 Thread Daniel Leidert
Last 10 calls in the backtrace. ** Attachment added: last bluefish calls http://launchpadlibrarian.net/14373186/gdb.txt -- Bluefish crashes when opening specific file https://bugs.launchpad.net/bugs/228068 You received this bug notification because you are a member of Ubuntu Bugs, which is

[Bug 228068] Re: Bluefish crashes when opening specific file

2008-05-08 Thread Cesare Tirabassi
I thought this could be a stack overflow since the recursion depth is quite large (around 6800). On my machine stack size (ulimit -s) is 8M, assuming 500 bytes per recursion (see pcrestack(3)) I'm safely within the limits. Could this be different on 32 bits machines!? I also checked the source

[Bug 228068] Re: Bluefish crashes when opening specific file

2008-05-08 Thread JacobSteelsmith
[EMAIL PROTECTED]:~$ ulimit -s 8192 [EMAIL PROTECTED]:~$ -- Bluefish crashes when opening specific file https://bugs.launchpad.net/bugs/228068 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list

[Bug 228068] Re: Bluefish crashes when opening specific file

2008-05-08 Thread Daniel Leidert
Found it. We cause it via String highlighting patterns. In Preferences Highlighting choose the php-section and there change for String single/double quoted to begin- and end-pattern and put or ' as beging and end pattern. Then Apply. Now everything should be fine. -- Bluefish crashes when

[Bug 228068] Re: Bluefish crashes when opening specific file

2008-05-08 Thread JacobSteelsmith
That works for me! Thanks for looking into this. -- Bluefish crashes when opening specific file https://bugs.launchpad.net/bugs/228068 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list

[Bug 228068] Re: Bluefish crashes when opening specific file

2008-05-07 Thread JacobSteelsmith
** Attachment added: main.eyecode http://launchpadlibrarian.net/14356479/main.eyecode -- Bluefish crashes when opening specific file https://bugs.launchpad.net/bugs/228068 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. --

[Bug 228068] Re: Bluefish crashes when opening specific file

2008-05-07 Thread JacobSteelsmith
Sorry..forgot: [EMAIL PROTECTED]:~$ lsb_release -rd Description:Ubuntu 8.04 Release:8.04 [EMAIL PROTECTED]:~$ apt-cache policy bluefish bluefish: Installed: 1.0.7-4 Candidate: 1.0.7-4 Version table: *** 1.0.7-4 0 500 http://us.archive.ubuntu.com hardy/universe Packages