Changeset 4161 for trunk/lisp/ediff-mult.el
- Timestamp:
- 09/09/06 16:30:10 (2 years ago)
- Files:
-
- trunk/lisp/ediff-mult.el (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lisp/ediff-mult.el
r4098 r4161 649 649 (lambda (elt) 650 650 (ediff-make-new-meta-list-element 651 ( concat auxdir1 elt)652 ( concat auxdir2 elt)651 (expand-file-name (concat auxdir1 elt)) 652 (expand-file-name (concat auxdir2 elt)) 653 653 (if lis3 654 654 (progn … … 661 661 (setq elt (ediff-add-slash-if-directory auxdir3 elt)) 662 662 (if (file-exists-p (concat auxdir3 elt)) 663 ( concat auxdir3 elt))))))663 (expand-file-name (concat auxdir3 elt))))))) 664 664 common))) 665 665 ;; return result … … 717 717 merge-autostore-dir nil) 718 718 (mapcar (lambda (elt) (ediff-make-new-meta-list-element 719 ( concat auxdir1 elt) nil nil))719 (expand-file-name (concat auxdir1 elt)) nil nil)) 720 720 common)) 721 721 )) … … 1339 1339 (nconc meta-list 1340 1340 (list (ediff-make-new-meta-list-element 1341 otherfile1 otherfile2 otherfile3))) 1341 (expand-file-name otherfile1) 1342 (expand-file-name otherfile2) 1343 (if otherfile3 1344 (expand-file-name otherfile3))))) 1342 1345 ) 1343 1346 (ediff-update-meta-buffer meta-buf 'must-redraw)
