User forums > Nightly builds
The 30 October 2011 build (7550) is out.
Jenna:
--- Quote from: danselmi on November 24, 2011, 09:47:43 am ---
--- Quote from: Alatar on November 24, 2011, 07:02:12 am ---I`m found source of my problem with rectangular selection - there is a spell-cheker plugin. On clean install (no dictionaries), or when plugin disable from Settings all work ok. When I`m enable it (add some dictionary, for example en_US) rectangular selection works as I described above.
--- End quote ---
I am not sure what's not working for you. When I delete rectangular selection with backspace, the selected characters get deleted and the cursor has a height of a few lines.
Pressing backspace again, will delete the character at the right of the cursor which is wrong. Sometimes the cursor gets even "longer". Sure, this is a bug. But it is not related with spellchecker (I just deleted SpellChecker for the Test) (on WinXP svn7583).
SciTE Version 3.0.1 does not have this problem.
regards danselmi
--- End quote ---
I don't have any problems with rectangular selections on windows with newest trunk, backspace seems to work correctly in any cases.
neo1691:
I am using this nightly build!
There is just one small thing that i noticed!
whenever i write print instead of printf, the error is "undefined reference to print in main" . thats fine. But the problem is that it does not shows the line number!
what am i missing??
ollydbg:
--- Quote from: neo1691 on December 02, 2011, 03:52:43 am ---whenever i write print instead of printf, the error is "undefined reference to print in main" . thats fine. But the problem is that it does not shows the line number!
--- End quote ---
Can you show us the code snippet and the build log(full build log), thanks. :D
--- Quote ---undefined reference to print in main
--- End quote ---
This is a linker error, so you have the "print" function declaration in your code.
neo1691:
--- Quote from: ollydbg on December 02, 2011, 03:56:52 am ---
--- Quote from: neo1691 on December 02, 2011, 03:52:43 am ---whenever i write print instead of printf, the error is "undefined reference to print in main" . thats fine. But the problem is that it does not shows the line number!
--- End quote ---
Can you show us the code snippet and the build log(full build log), thanks. :D
--- Quote ---undefined reference to print in main
--- End quote ---
This is a linker error, so you have the "print" function declaration in your code.
--- End quote ---
--- Code: ---#include<stdio.h>
#include<conio.h>
int main ()
{
int i, j;
int a[10];
for(i=0;i<10;i++)
scanf("%d",&a[i]);
printf("\n%u",&j);
printf("TIMEPASS");
for(i=0;i<10;i++)
printf("%d",a[i]);
scan("%d",&j); //purposeful error made by me
}
--- End code ---
I have also posted the screenshot of build error in the attachments
ollydbg:
It works OK here(I use mingw gcc compiler under WinXP)
See the screen shot:
So, mostly, you have some compiler/linker setting errors.
BTW: A full build log is needed to detect your problem, please read the FAQ:Compiling (errors).
Navigation
[0] Message Index
[#] Next page
[*] Previous page
Go to full version