Procházet zdrojové kódy

Do not watch dir if entering in filter mode

master
Arun Prakash Jana před 6 roky
rodič
revize
ba088196f6
V databázi nebyl nalezen žádný známý klíč pro tento podpis ID GPG klíče: A75979F35C080412
1 změnil soubory, kde provedl 3 přidání a 2 odebrání
  1. +3
    -2
      src/nnn.c

+ 3
- 2
src/nnn.c Zobrazit soubor

@@ -2830,10 +2830,11 @@ begin:
populate(path, lastname);

#ifdef LINUX_INOTIFY
if (inotify_wd == -1)
if (presel != FILTER && inotify_wd == -1) {
inotify_wd = inotify_add_watch(inotify_fd, path, INOTIFY_MASK);
}
#elif defined(BSD_KQUEUE)
if (event_fd == -1) {
if (presel != FILTER && event_fd == -1) {
#if defined(O_EVTONLY)
event_fd = open(path, O_EVTONLY);
#else


Načítá se…
Zrušit
Uložit