Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
PATCH: Re: PATCH: emulate (Re: Prompt fun)
- X-seq: zsh-workers 8193
- From: "Bart Schaefer" <schaefer@xxxxxxxxxxxxxxxxxxxxxxx>
- To: zsh-workers@xxxxxxxxxxxxxx
- Subject: PATCH: Re: PATCH: emulate (Re: Prompt fun)
- Date: Sun, 10 Oct 1999 23:03:34 +0000
- In-reply-to: <E11ZAyr-0005J7-00@xxxxxxxxxxxxxxxxxx>
- Mailing-list: contact zsh-workers-help@xxxxxxxxxxxxxx; run by ezmlm
- References: <E11ZAyr-0005J7-00@xxxxxxxxxxxxxxxxxx>
As per the discussion that followed Zefram's changes in 8152 and 8154, this
backs out manipulation of `exec' by emulate, and makes `extendeglob' be off
by default again. I'm persuaded that the rest of the changes were OK.
Index: Doc/Zsh/options.yo
===================================================================
@@ -329,7 +329,7 @@
)
pindex(EXTENDED_GLOB)
cindex(globbing, extended)
-item(tt(EXTENDED_GLOB) <Z>)(
+item(tt(EXTENDED_GLOB))(
Treat the `tt(#)', `tt(~)' and `tt(^)' characters as part of patterns
for filename generation, etc. (An initial unquoted `tt(~)'
always produces named directory expansion.)
Index: Src/options.c
===================================================================
@@ -104,8 +104,8 @@
{NULL, "cshnullglob", OPT_EMULATE|OPT_CSH, CSHNULLGLOB},
{NULL, "equals", OPT_EMULATE|OPT_ZSH, EQUALS},
{NULL, "errexit", OPT_EMULATE, ERREXIT},
-{NULL, "exec", OPT_EMULATE|OPT_ALL, EXECOPT},
-{NULL, "extendedglob", OPT_EMULATE|OPT_ZSH, EXTENDEDGLOB},
+{NULL, "exec", OPT_ALL, EXECOPT},
+{NULL, "extendedglob", OPT_EMULATE, EXTENDEDGLOB},
{NULL, "extendedhistory", OPT_CSH, EXTENDEDHISTORY},
{NULL, "flowcontrol", OPT_ALL, FLOWCONTROL},
{NULL, "functionargzero", OPT_EMULATE|OPT_NONBOURNE, FUNCTIONARGZERO},
--
Bart Schaefer Brass Lantern Enterprises
http://www.well.com/user/barts http://www.brasslantern.com
Messages sorted by:
Reverse Date,
Date,
Thread,
Author