;;; -*-Scheme-*-
;;;
-;;; $Id: dired.scm,v 1.152 1994/08/04 08:48:12 cph Exp $
+;;; $Id: dired.scm,v 1.153 1995/01/31 21:38:09 cph Exp $
;;;
-;;; Copyright (c) 1986, 1989-94 Massachusetts Institute of Technology
+;;; Copyright (c) 1986, 1989-95 Massachusetts Institute of Technology
;;;
;;; This material was developed by the Scheme project at the
;;; Massachusetts Institute of Technology, Department of
(define-key 'dired #\~ 'dired-flag-backup-files)
(define-key 'dired #\C 'dired-do-copy)
-(define-key 'dired #\G 'dired-chgrp)
(define-key 'dired #\K 'dired-krypt-file)
-(define-key 'dired #\M 'dired-chmod)
-(define-key 'dired #\O 'dired-chown)
(define-key 'dired #\R 'dired-do-rename)
-(define-key 'dired #\Z 'dired-do-compress)
(define-key 'dired #\c-d 'dired-flag-file-deletion)
(define-key 'dired #\c-n 'dired-next-line)
;;; -*-Scheme-*-
;;;
-;;; $Id: dirunx.scm,v 1.8 1995/01/06 00:58:41 cph Exp $
+;;; $Id: dirunx.scm,v 1.9 1995/01/31 21:38:17 cph Exp $
;;;
;;; Copyright (c) 1992-95 Massachusetts Institute of Technology
;;;
program attribute (->namestring pathname))
(dired-redisplay pathname lstart))))))
+(define-key 'dired #\M 'dired-chmod)
(define-command dired-chmod
"Change mode of this file."
"sChange to Mode\nP"
(dired-change-inode "chmod"))
+(define-key 'dired #\G 'dired-chgrp)
(define-command dired-chgrp
"Change group of this file."
"sChange to Group\nP"
(dired-change-inode "chgrp"))
+(define-key 'dired #\O 'dired-chown)
(define-command dired-chown
"Change owner of this file."
"sChange to Owner\nP"
(dired-change-inode "chown"))
+(define-key 'dired #\Z 'dired-do-compress)
(define-command dired-do-compress
"Compress or uncompress marked (or next ARG) files.
The files are compressed or uncompressed using gzip."