Re: [Github-comments] [geany/geany] Add .editorconfig (#1193)

2016-10-17 Thread Colomban Wendling
b4n commented on this pull request. > @@ -0,0 +1,11 @@ +root = true + +[*] +indent_size = 4 +end_of_line = lf + +[*.{c,h,cxx,am,m4}] +indent_style = tab Nah, it makes sense. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub:

[Github-comments] [geany/geany] Defunct process (a.k.a. zombie process) cannot be eliminated (#1266)

2016-10-17 Thread samermakadicy
Dear Sir/Madam, I was programming in C using Geany Text Editor on a Unix device today and found an issue you might find interesting to resolve. During the C program, the fork() command was used to create a parent and a child process. With the intent to explore the capabilities of the Unix oper

Re: [Github-comments] [geany/geany] Defunct process (a.k.a. zombie process) cannot be eliminated (#1266)

2016-10-17 Thread elextr
On 18 October 2016 at 10:47, samermakadicy wrote: > Dear Sir/Madam, > > I was programming in C using Geany Text Editor on a Unix device today and > found an issue you might find interesting to resolve. > > During the C program, the fork() command was used to create a parent and a > child process.