emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r105095: Fix syntax error in last che


From: Lars Magne Ingebrigtsen
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r105095: Fix syntax error in last checkin.
Date: Mon, 11 Jul 2011 15:36:54 +0200
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 105095
committer: Lars Magne Ingebrigtsen <address@hidden>
branch nick: trunk
timestamp: Mon 2011-07-11 15:36:54 +0200
message:
  Fix syntax error in last checkin.
modified:
  lisp/dired-x.el
=== modified file 'lisp/dired-x.el'
--- a/lisp/dired-x.el   2011-07-11 13:34:35 +0000
+++ b/lisp/dired-x.el   2011-07-11 13:36:54 +0000
@@ -1103,10 +1103,9 @@
 
     ;; Return commands or nil if flist is still non-nil.
     ;; Evaluate the commands in order that any logical testing will be done.
-    (remove-duplicates
-     (if (cdr cmds)
-        (mapcar #'eval cmds)
-       (eval (car cmds))))))           ; single command
+    (if (cdr cmds)
+       (remove-duplicates (mapcar #'eval cmds))
+      (eval (car cmds)))))             ; single command
 
 (defun dired-guess-shell-command (prompt files)
   "Ask user with PROMPT for a shell command, guessing a default from FILES."


reply via email to

[Prev in Thread] Current Thread [Next in Thread]