Daniel Baskerville
unread,Aug 1, 2012, 6:31:38 PM8/1/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to nicee...@googlegroups.com
Hi,
After using and loving ne for years and years I recently updated to a version of ubuntu that ships with 2.3 which is exhibiting the above behavior.
I've verified that this is the BackSpace command itself, not some kind of macro that the backspace key is bound to.
I checked out the latest 2.4 source tarball and it's the same.
Is this intentional? Is there a way to turn it off?
BTW, as an aside the linker command in the 2.4 src/makefile does not work with my version of gcc (4.6.3).
Instead of,
$(CC) -lm $(OPTS) $(LDFLAGS) $(if $(NE_TEST), -coverage,) $^ $(LIBS) -o $(PROGRAM)
It should be,
$(CC) $(OPTS) $(LDFLAGS) $(if $(NE_TEST), -coverage,) $^ -lm $(LIBS) -o $(PROGRAM)
(-lm should be with the other libs, after the input files, otherwise it gets ignored and the linker cannot find the math lib symbols)
Thanks,
- Daniel