dired 模式下在某个文件上按'!'键, 出现错误, 信息如下:
in the Dired buffer, where:
16 excludes directories, `.' and `..'
64 includes directories but not `.' and `..'
256 includes directories, `.' and `..'
If ARG is otherwise non-nil, use the current file.
Optional third argument FILTER, if non-nil, is a function to select
some of the files--those for which (funcall FILTER FILENAME) is non-nil.
If DISTINGUISH-ONE-MARKED is non-nil, then if we find just one marked file,
return (t FILENAME) instead of (FILENAME).
Don't use that together with FILTER." (let* ((all-of-them (save-excursion (prog1 (let ((inhibit-read-only t) case-fold-search found results) (if (and (consp arg) (> ... 4)) (progn (let ... ...))) (if (and arg (not ...)) (if (integerp arg) (progn ... ...) (list ...)) (let (... next-position) (save-excursion ... ... ...) (if ... ...) (if found results ...)))) (dired-move-to-filename)))) result) (if (not filter) (if (and distinguish-one-marked (eq (car all-of-them) t)) all-of-them (nreverse all-of-them)) (let ((--dolist-tail-- all-of-them) file) (while --dolist-tail-- (setq file (car --dolist-tail--)) (if (funcall filter file) (setq result (cons file result))) (setq --dolist-tail-- (cdr --dolist-tail--)))) result))), 5
user-error: Minibuffer window is not active
Updating buffer list...done
--
修改:xeagle FROM 123.125.37.*
FROM 123.125.37.*