[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/lisp/dired.el
From: |
Richard M. Stallman |
Subject: |
[Emacs-diffs] Changes to emacs/lisp/dired.el |
Date: |
Mon, 07 Jan 2002 00:31:19 -0500 |
Index: emacs/lisp/dired.el
diff -c emacs/lisp/dired.el:1.218 emacs/lisp/dired.el:1.219
*** emacs/lisp/dired.el:1.218 Fri Dec 21 14:37:25 2001
--- emacs/lisp/dired.el Mon Jan 7 00:31:19 2002
***************
*** 1615,1621 ****
(dired-get-marked-files t)))
(dired-get-marked-files 'no-dir))
" "))))
! (kill-new string)
(message "%s" string)))
--- 1615,1623 ----
(dired-get-marked-files t)))
(dired-get-marked-files 'no-dir))
" "))))
! (if (eq last-command 'kill-region)
! (kill-append string nil)
! (kill-new string))
(message "%s" string)))
- [Emacs-diffs] Changes to emacs/lisp/dired.el,
Richard M. Stallman <=