Mercurial > hg > xemacs-beta
view lisp/efs/dired-mule.el @ 149:538048ae2ab8 r20-3b1
Import from CVS: tag r20-3b1
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:36:16 +0200 |
parents | 8b8b7f3559a2 |
children |
line wrap: on
line source
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; ;; File: dired-mule.el ;; Dired Version: #Revision: 7.9 $ ;; RCS: ;; Description: MULE support for dired. ;; Created: Sun Jul 17 14:45:12 1994 by sandy on ibm550 ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; Acknowledgements: ;; ;; Ishikawa Ichiro for sending MULE patches and information. (require 'dired) (defun dired-find-file (&optional coding-system) "In dired, visit the file or directory named on this line." (interactive "ZCoding-system: ") (find-file (dired-get-filename) coding-system)) (defun dired-find-file-other-window (&optional display coding-system) "In dired, visit this file or directory in another window. With a prefix, the file is displayed, but the window is not selected." (interactive "P\nZCoding-system: ") (if display (dired-display-file coding-system) (find-file-other-window (dired-get-filename) coding-system))) (defun dired-display-file (&optional coding-system) "In dired, displays this file or directory in the other window." (interactive "ZCoding-system: ") (display-buffer (find-file-noselect (dired-get-filename) coding-system))) ;;; end of dired-mule.el