summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlum <lum@openbsd.org>2013-05-27 18:24:44 +0000
committerlum <lum@openbsd.org>2013-05-27 18:24:44 +0000
commit302f8888d1404fa270f32971bceeb448d1902496 (patch)
treeefed6a0b20464974c90df4ba86b70cc4aa4840e3
parentAdd dired commands. ok and suggestions jmc@ (diff)
downloadwireguard-openbsd-302f8888d1404fa270f32971bceeb448d1902496.tar.xz
wireguard-openbsd-302f8888d1404fa270f32971bceeb448d1902496.zip
Add dired-create-directory to function maps.
-rw-r--r--usr.bin/mg/dired.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/mg/dired.c b/usr.bin/mg/dired.c
index 8630f2ec49d..59a21a990d9 100644
--- a/usr.bin/mg/dired.c
+++ b/usr.bin/mg/dired.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: dired.c,v 1.52 2012/11/03 15:36:03 haesbaert Exp $ */
+/* $OpenBSD: dired.c,v 1.53 2013/05/27 18:24:44 lum Exp $ */
/* This file is in the public domain. */
@@ -182,6 +182,7 @@ dired_init(void)
{
funmap_add(dired, "dired");
funmap_add(d_undelbak, "dired-backup-unflag");
+ funmap_add(d_create_directory, "dired-create-directory");
funmap_add(d_copy, "dired-copy-file");
funmap_add(d_expunge, "dired-do-deletions");
funmap_add(d_findfile, "dired-find-file");