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
5b68b333
Commit
5b68b333
authored
Sep 14, 2012
by
Juri Linkov
Browse files
* lisp/dired-aux.el (dired-do-chxxx): Use `eq' to detect empty input.
Fixes: debbugs:12399
parent
6a2e6868
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletion
+9
-1
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/dired-aux.el
lisp/dired-aux.el
+4
-1
No files found.
lisp/ChangeLog
View file @
5b68b333
2012-09-13 Juri Linkov <juri@jurta.org>
* dired-aux.el (dired-do-chxxx): Use `eq' to detect empty input.
(Bug#12399)
2012-09-13 Glenn Morris <rgm@gnu.org>
* calc/calc.el (math-compose-expr):
...
...
lisp/dired-aux.el
View file @
5b68b333
...
...
@@ -244,7 +244,10 @@ List has a form of (file-name full-file-name (attribute-list))."
(
function
dired-check-process
)
(
append
(
list
operation
program
)
(
unless
(
string-equal
new-attribute
""
)
(
unless
(
or
(
string-equal
new-attribute
""
)
;; Use `eq' instead of `equal'
;; to detect empty input (bug#12399).
(
eq
new-attribute
default
))
(
if
(
eq
op-symbol
'touch
)
(
list
"-t"
new-attribute
)
(
list
new-attribute
)))
...
...
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