diff options
author | 2013-05-27 18:24:44 +0000 | |
---|---|---|
committer | 2013-05-27 18:24:44 +0000 | |
commit | 302f8888d1404fa270f32971bceeb448d1902496 (patch) | |
tree | efed6a0b20464974c90df4ba86b70cc4aa4840e3 | |
parent | Add dired commands. ok and suggestions jmc@ (diff) | |
download | wireguard-openbsd-302f8888d1404fa270f32971bceeb448d1902496.tar.xz wireguard-openbsd-302f8888d1404fa270f32971bceeb448d1902496.zip |
Add dired-create-directory to function maps.
-rw-r--r-- | usr.bin/mg/dired.c | 3 |
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"); |