Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
d4939c66
Commit
d4939c66
authored
May 14, 2003
by
John Paul Wallington
Browse files
(insert-directory): Remove --dired switch when
`ls-lisp-use-insert-directory-program' is nil.
parent
1d2b9bba
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
0 deletions
+8
-0
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/ls-lisp.el
lisp/ls-lisp.el
+3
-0
No files found.
lisp/ChangeLog
View file @
d4939c66
2003-05-14 John Paul Wallington <jpw@gnu.org>
* ls-lisp.el (insert-directory): Remove --dired switch when
`ls-lisp-use-insert-directory-program' is nil.
2003-05-13 Stefan Monnier <monnier@cs.yale.edu>
* textmodes/ispell.el (xemacsp): Remove. Use (featurep 'xemacs).
...
...
lisp/ls-lisp.el
View file @
d4939c66
...
...
@@ -216,6 +216,9 @@ that work are: A a c i r S s t u U X g G B C R and F partly."
(
if
handler
(
funcall
handler
'insert-directory
file
switches
wildcard
full-directory-p
)
;; Remove --dired switch
(
if
(
string-match
"--dired "
switches
)
(
setq
switches
(
replace-match
""
nil
nil
switches
)))
;; Convert SWITCHES to a list of characters.
(
setq
switches
(
delete
?-
(
append
switches
nil
)))
(
if
wildcard
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment