Regression was introduced in lzma support
(a5ba278729)
All the heuristics stuff has been removed, only
LZMA utils 4.32.1 and later formats are supported.
Signed-off-by: Mikhail S. Pobolovets <styx.mp@gmail.com>
Fix issue: in function src/utillinux.c:my_system() added code for splitting
command line by spaces, use just first token as argument to function execlp()
Signed-off-by: Slava Zanko <slavazanko@gmail.com>
If MC built with --without-subshell option is run with -d option,
the Ctrl-C key combination closes MC. Such behaviour was introduced
in 66332a4fb1 commit.
This commit actually restores the SIGINT signal handling which was
before 66332a4fb1 commit.
Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
* listbox_select_first has been introduced
* listbox_select_last has been reworked
Now when you press KEY_UP staying on the first
entry, you will get to the entry and vice versa
with KEY_DOWN staying at the last entry.
Signed-off-by: Mikhail S. Pobolovets <styx.mp@gmail.com>
Changed INSTALL file. Added some new descriptions of 'configure' scritp options.
Changed README file. Fixed minimal version of glib and changed download location of project.
Small corrections of README and INSTALL files (Yury V. Zaytsev)
Changed description of Ctrl-t hotkey. Now Ctrl-t mean 'Select codepage'
More poverfull Russian documentation. Need to complete.
Signed-off-by: Slava Zanko <slavazanko@gmail.com>
INSTALL: remove notes about TODO file, fix link to GPM project
README:
- add ref to INSTALL file for dependencies
- remove mentions about TODO file
- add ref to wiki for reporting bugs
FAQ: fix links, replace Alt to Meta
doc/man/mcedit.1.in: add editor options and some of description,
add CODE NAVIGATION section
doc/man/mcedit.1.in: suppose C specific option for ctags
doc/man/mcedit.1.in: minor fixes typos, links, dates
doc/INSTALL: fix names of autconf options
Signed-off-by: Stan. S. Krupoderov <pashelper@gmail.com>
Some typo in doc/man/mcedit.1.in, doc/man/mc.1.in fixed
add description for some editor options
Signed-off-by: Ilia Maslakov <il.smind@gmail.com>
Man page update: fixed description of selec/unselect files.
src/cmd.c: fixed help node name.
Removed obsoleted info from man pages.
Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
* 1423_FreeBSD_Slang_not_found:
Removed unneded check for iconv functions. MC use glib functions for
Fixed test conditions in m4 files for more compability
Add support of csh (used on FreeBSD)
Ticket #1423 (Fail to compile with option '--with-screen=slang')
Fix issue:
Added additional check for this place.
Reason: If slang installed into /usr/local path, then ./configure
script stopped with 'Slang library not found' error
Also added new two options to configure script:
--with-slang-includes=PATH
--with-slang-libs=PATH
Now libslang finds in (by order):
* --with-slang-includes and --with-slang-libs
* /usr
* /usr/local
Signed-off-by: Slava Zanko <slavazanko@gmail.com>
* 1389_code_cleanup:
little reorganisation key_name_conv_tab array
Avoid warning in src/search/regex.c about signed and unsigned types
Fixed excaping of '%' symbol in edit_complete_word_cmd() function
fixed compiler hints: -Wwrite-strings option helped a lot
file: added x_basename cast as we know the string is mutable
view: fixed compile hint: char * -> const char *
fixed warning: stray ',' at the end of enum
src/strescape.{c,h}: sanitized fn proto to keep in sync with rest of code
src/search fixed variable declaration and code mix
src/screen.c: fixed warning hint: char * -> const char *
tcc build fix: fixed c99 external constants
tcc build fix: popt: added hack for tcc's alloca()
completion: fixed multiple warnings: char * -> const char *
Fix one compiler warning in setup.c
Remove one argument for format,in order to avoid a compiler warning
Fix compiler warning about different signedness of pointers in editcmd.c
Remove unneeded vars in edit/edit.c to avoid compiler warnings