Add commented-out stubs for commands to do file linking.
authorChris Hanson <org/chris-hanson/cph>
Sat, 2 Jun 2001 22:28:49 +0000 (22:28 +0000)
committerChris Hanson <org/chris-hanson/cph>
Sat, 2 Jun 2001 22:28:49 +0000 (22:28 +0000)
v7/src/edwin/dirunx.scm

index 7110c174628a6c6104c41daf38f3b50f3f171585..134bc055b70346b6c6fe94de1d0c3d1d483c5d5f 100644 (file)
@@ -1,6 +1,6 @@
 ;;; -*-Scheme-*-
 ;;;
-;;; $Id: dirunx.scm,v 1.12 1999/02/01 03:47:22 cph Exp $
+;;; $Id: dirunx.scm,v 1.13 2001/06/02 22:28:49 cph Exp $
 ;;;
 ;;; Copyright (c) 1992-1999 Massachusetts Institute of Technology
 ;;;
@@ -80,4 +80,26 @@ The files are compressed or uncompressed using gzip."
                                "gz")))
                      lstart))))))))
       (if (positive? n)
-         (message "Compressed or uncompressed " n " files.")))))
\ No newline at end of file
+         (message "Compressed or uncompressed " n " files.")))))
+
+#|
+(define-command dired-do-symlink
+  "Make symbolic links to current file or all marked (or next ARG) files.
+When operating on just the current file, you specify the new name.
+When operating on multiple or marked files, you specify a directory
+and new symbolic links are made in that directory
+with the same names that the files currently have."
+  "P"
+  (lambda (argument)
+    ))
+
+(define-command dired-do-hardlink
+  "Add names (hard links) current file or all marked (or next ARG) files.
+When operating on just the current file, you specify the new name.
+When operating on multiple or marked files, you specify a directory
+and new hard links are made in that directory
+with the same names that the files currently have."
+  "P"
+  (lambda (argument)
+    ))
+|#
\ No newline at end of file