man page lies about mc.keymap #2675
Labels
area: docs
Improvements or additions to documentation
prio: low
Minor problem or easily worked around
ver: 4.8.0
Reproducible in version 4.8.0
Milestone
Important
This issue was migrated from Trac:
jose1711
(@jose1711)manual page of midnight commander mentions:
..
A keymap-file is searched on the following algorithm (to the first one found):
..
..
this is however not true (strace|grep keymap):
access("/usr/share/mc/mc.keymap", R_OK) = -1 ENOENT (No such file or directory)
access("/etc/mc/mc.keymap", R_OK) = 0
access("/etc/mc/mc.keymap", R_OK) = 0
stat64("/etc/mc/mc.keymap", {st_mode=S_IFREG|0644, st_size=7922, ...}) = 0
open("/etc/mc/mc.keymap", O_RDONLY|O_LARGEFILE) = 5
access("/home/jose/.config/mc/mc.keymap", R_OK) = -1 ENOENT (No such file or directory)
access("/home/jose/.config/mc/mc.keymap", R_OK) = -1 ENOENT (No such file or directory)
access("/etc/mc/mc.keymap", R_OK) = 0
access("/etc/mc/mc.keymap", R_OK) = 0
access("/etc/mc/mc.keymap", R_OK) = 0
instead of ~/.local/share/mc/mc.keymap file located at ~/.config/mc/mc.keymap is searched.
The text was updated successfully, but these errors were encountered: