Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: zle -M and other option arguments
- X-seq: zsh-workers 18562
- From: Peter Stephenson <pws@xxxxxxx>
- To: Zsh hackers list <zsh-workers@xxxxxxxxxx>
- Subject: Re: zle -M and other option arguments
- Date: Wed, 21 May 2003 13:54:49 +0100
- In-reply-to: "Zefram"'s message of "Wed, 21 May 2003 13:05:58 BST." <20030521120558.GB20531@xxxxxxxx>
- Mailing-list: contact zsh-workers-help@xxxxxxxxxx; run by ezmlm
Zefram wrote:
> In the zsh/files module, mkdir's -m option has the same problem.
Here's a patch for that.
Index: Src/Modules/files.c
===================================================================
RCS file: /cvsroot/zsh/zsh/Src/Modules/files.c,v
retrieving revision 1.10
diff -u -r1.10 files.c
--- Src/Modules/files.c 27 Aug 2002 21:10:34 -0000 1.10
+++ Src/Modules/files.c 21 May 2003 12:53:06 -0000
@@ -74,12 +74,8 @@
umask(oumask);
if(OPT_ISSET(ops,'m')) {
- char *str = *args++, *ptr;
+ char *str = OPT_ARG(ops,'m'), *ptr;
- if(!*args) {
- zwarnnam(nam, "not enough arguments", NULL, 0);
- return 1;
- }
mode = zstrtol(str, &ptr, 8);
if(!*str || *ptr) {
zwarnnam(nam, "invalid mode `%s'", str, 0);
@@ -703,7 +699,7 @@
BUILTIN("chgrp", 0, bin_chown, 2, -1, BIN_CHGRP, "Rs", NULL),
BUILTIN("chown", 0, bin_chown, 2, -1, BIN_CHOWN, "Rs", NULL),
BUILTIN("ln", 0, bin_ln, 1, -1, BIN_LN, LN_OPTS, NULL),
- BUILTIN("mkdir", 0, bin_mkdir, 1, -1, 0, "pm", NULL),
+ BUILTIN("mkdir", 0, bin_mkdir, 1, -1, 0, "pm:", NULL),
BUILTIN("mv", 0, bin_ln, 2, -1, BIN_MV, "fi", NULL),
BUILTIN("rm", 0, bin_rm, 1, -1, 0, "dfirs", NULL),
BUILTIN("rmdir", 0, bin_rmdir, 1, -1, 0, NULL, NULL),
--
Peter Stephenson <pws@xxxxxxx> Software Engineer
CSR Ltd., Science Park, Milton Road,
Cambridge, CB4 0WH, UK Tel: +44 (0)1223 692070
**********************************************************************
The information transmitted is intended only for the person or
entity to which it is addressed and may contain confidential
and/or privileged material.
Any review, retransmission, dissemination or other use of, or
taking of any action in reliance upon, this information by
persons or entities other than the intended recipient is
prohibited.
If you received this in error, please contact the sender and
delete the material from any computer.
**********************************************************************
Messages sorted by:
Reverse Date,
Date,
Thread,
Author