-
Notifications
You must be signed in to change notification settings - Fork 18
/
ChangeLog
14341 lines (9359 loc) · 461 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2011-03-11 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 28889: Src/subst.c, Test/D04parameter.ztst: ${##} should
return the length of $#.
2011-03-11 Barton E. Schaefer <schaefer@zsh.org>
* Greg Klanderman: 28887: Completion/Zsh/Type/_command_names:
fix quoting in defs array.
2011-03-11 Peter Stephenson <pws@csr.com>
* unposted: Completion/Zsh/Context/_dynamic_directory_name:
Mikael spotted that completion doesn't work if
$zsh_directory_name_functions is set but zsh_directory_name
isn't defined.
* users/15864: Completion/Zsh/Context/_dynamic_directory_name,
Doc/Zsh/contrib.yo, Doc/Zsh/expn.yo, Functions/Chpwd/.distfiles,
Functions/Chpwd/zsh_directory_name_cdr,
Functions/Misc/add-zsh-hook, Src/subst.c, Src/utils.c:
turn zsh_directory_name into a hook.
* 28886: Src/Zle/zle_utils.c: Fix 28772 for the case where
regions have the "P" flag to include $PREDISPLAY in the
offsets.
2011-03-08 Barton E. Schaefer <schaefer@zsh.org>
* Greg Klanderman: 28846: Completion/Zsh/Type/_functions,
Completion/Zsh/Type/_command_names,
Completion/Zsh/Type/_parameters, Doc/Zsh/compsys.yo: adapt
prefix-needed zstyle to handle the completion function naming
convention of a leading underscore.
2011-03-06 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 28866: Src/exec.c, Test/A04redirect.ztst: With POSIX_BUILTINS,
"command" prefix tops a command having special behaviour.
2011-03-05 Barton E. Schaefer <schaefer@zsh.org>
* Adrian: 28857: Functions/Prompts/prompt_bigfade_setup: use %d
instead of $PWD
2011-03-04 Frank Terbeck <ft@bewatermyfriend.org>
* 28853: Doc/Zsh/contrib.yo, Doc/Zsh/expn.yo, Functions/Chpwd/cdr,
Src/builtin.c, Src/prompt.c: Fix typo: preceed -> precede
2011-03-02 Barton E. Schaefer <schaefer@zsh.org>
* 28805: Doc/Zsh/builtins.yo, Doc/Zsh/mod_sched.yo: move stray
text about the sched builtin away from the set builtin.
2011-03-01 Peter Stephenson <p.w.stephenson@ntlworld.com>
* Baptiste: 28819: Completion/BSD/Command/_sockstat,
Completion/Unix/Command/_mount,
Completion/Unix/Type/_file_systems: FreeBSD completion tweaks.
2011-02-28 Barton E. Schaefer <schaefer@zsh.org>
* 28823: Src/builtin.c: make it an error to tie the same scalar to
two different arrays (prevents crash bug); improve a couple of
other error messages.
2011-02-28 Peter Stephenson <pws@csr.com>
* Frank, 28812, modified as in 28813: Src/string.c: wcs_ztrdup()
needs to allocate array of wchar_t. Looks like this isn't
currently used anywhere.
2011-02-27 Wayne Davison <wayned@users.sourceforge.net>
* Nikolai Weibull: 28649,28804: Completion/Unix/Command/_git:
Latest version copied from https://github.com/now/zsh.
2011-02-24 Peter Stephenson <pws@csr.com>
* 28799: Src/lex.c: fix bug introduced with lexflags
that lexical analyser didn't stop quickly enough when
retrieving completion words.
2011-02-23 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 28795: Src/exec.c: tweak to 28791 for forked shells.
Also (unposted) typos in comments noticed by Mikael.
2011-02-22 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 28791: Doc/Zsh/options.yo, Src/builtin.c, Src/exec.c,
Test/A04redirect.ztst: exit on errors in special builtins
with POSIXBUILTINS.
2011-02-21 Peter Stephenson <pws@csr.com>
* 28783: Doc/Zsh/options.yo, Src/lex.c, Test/A01grammar.ztst:
allow ( to be treated specially in more places when SH_GLOB
is set but KSH_GLOB isn't.
* 28784: Doc/Zsh/options.yo, Test/A04redirect.ztst, Src/exec.c:
exit on exec redirection error with POSIXBUILTINS.
2011-02-19 Frank Terbeck <ft@bewatermyfriend.org>
* 28776: Functions/VCS_Info/VCS_INFO_bydir_detect,
Functions/VCS_Info/Backends/VCS_INFO_detect_hg,
Functions/VCS_Info/Backends/VCS_INFO_get_data_hg: Let
vcs_info detect very old mercurial repositories.
2011-02-18 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 28773, Doc/Zsh/zle.yo, Src/zle_hist.c: add
zle-history-line-set widget.
* 28772: Doc/Zsh/zle.yo, Src/Zle/compcore.c,
Src/Zle/compresult.c, Src/Zle/zle.h, Src/Zle/zle_refresh.c,
Src/Zle/zle_tricky.c, Src/Zle/zle_utils.c: update regions
in $region_highlight dynamically.
2011-02-17 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 28761: Completion/Unix/Command/_sccs: file completion missing
for some commands.
* 28762: Src/exec.c: logic for closing coproc file descriptors
was wrong.
2011-02-15 Frank Terbeck <ft@bewatermyfriend.org>
* 28758: Functions/Misc/colors: work with non-default option sets.
2011-02-13 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 28750 with some extra comments:
Completion/Unix/Type/_path_files: separate out completeinword
handling where the current component is not the last but is
the first from the already handled case where there is a further
component in front.
2011-02-11 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 28671: Src/Zle/zle_utils.c: better cursor positioning
after undo.
* users/15738: Functions/Zle/modify-current-argument: better
positioning of the cursor after the operation.
2011-02-11 Frank Terbeck <ft@bewatermyfriend.org>
* Lennart Weller: 28739:
Functions/VCS_Info/Backends/VCS_INFO_detect_svn: Fix svn
detection in vcs_info.
2011-02-10 Barton E. Schaefer <schaefer@zsh.org>
* users/15759 (slightly augmented): Functions/Zle/send-invisible,
Functions/Zle/.distfiles: widget to read a concealed string from
the keyboard and stash it in $INVISIBLE.
* users/15770: Src/init.c: disable HASH_DIRS when not interactive.
* 28710: Completion/Debian/Type/_deb_packages: replace complex
parameter expansion with command substitution to speed diffing
of large lists of packages.
* unposted: Doc/Zsh/contrib.yo: add send-invisible. Re-order
some other entries to restore approximate alphabetization.
2011-01-24 Clint Adams <clint@zsh.org>
* Carl Worth: 28648: Completion/Unix/Command/_notmuch: notmuch
completion by Ingmar Vanhassel.
2011-01-23 Peter Stephenson <p.w.stephenson@ntlworld.com>
* gi1242+zsh@gmail.com: 28647: Completion/X/Command/_vnc: more
options.
* gi1242+zsh@gmail.com: 28646: Completion/X/Command/_matlab: new
completion.
2011-01-19 Peter Stephenson <pws@csr.com>
* 28638: Doc/Zsh/parameter.yo, Src/zsh.h,
Src/Modules/parameter.c, plus NEWS added: add $usergroups hash
mapping from user's own groups by name to GID.
2011-01-18 Peter Stephenson <pws@csr.com>
* Mikael: 28637: Src/subst.c: ${foo:0:} caused crash.
2011-01-17 Peter Stephenson <pws@csr.com>
* Atom Smasher: users/15715: Completion/Zsh/Function/_zargs: new
2011-01-16 Wayne Davison <wayned@users.sourceforge.net>
* unposted: Config/defs.mk.in, configure.ac: use the -L option
with yodl 3.x.
2011-01-16 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 28631: gi1242+zsh@gmail.com (as in 28633):
Completion/Unix/Command/.distfiles, Completion/Unix/Command/_lp,
Completion/Unix/Command/_tex, Completion/Unix/Command/_xournal,
Completion/Unix/Type/.distfiles, Completion/Unix/Type/_tex,
Completion/X/Command/.distfiles, Completion/X/Command/_xournal:
various updates.
* 28634: Test/D04parameter.ztst: test for 28630.
* Ricky Zhou: 28630: Src/params.c: fix crash with isident.
* gi1242+zsh@gmail.com: 28629: Completion/Unix/Command/.distfiles,
Completion/Unix/Command/_lp, Completion/Unix/Command/_tex,
Completion/Unix/Command/_xournal,
Completion/Unix/Type/.distfiles, Completion/Unix/Type/_tex,
Completion/X/Command/.distfiles, Completion/X/Command/_xournal:
completion updates.
2011-01-16 Clint Adams <clint@zsh.org>
* unposted: Completion/Unix/Command/_fuser: fix typo in pattern
2011-01-13 Peter Stephenson <pws@csr.com>
* c.f. 28628: Doc/Zsh/func.yo: some extra notes on traps.
2011-01-11 Peter Stephenson <p.w.stephenson@ntlworld.com>
* unposted: Src/params.c: fix return types in 28617.
* 28611: Src/Zle/zle_move.c: remove unused special behaviour for
VI mark 26.
2011-01-11 Peter Stephenson <pws@csr.com>
* 28626: Doc/Zsh/func.yo: summarise differences between two
types of trap.
2011-01-10 Peter Stephenson <pws@csr.com>
* 28617: Src/glob.c, Src/params.c, Test/E01options.ztst: NO_EXEC
option was doing to much work with parameter subscripting,
parameter assignments, and globbing.
2011-01-09 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 28544: Src/Makefile.in, Makemod.in.in: another way of handling
bad dependencies for 'make prep' as in 28541.
* gi1242+zsh@gmail.com: 28594 (with changes as in 28598):
Completion/Linux/Command/.distfiles,
Completion/Linux/Command/_modutils,
Completion/Linux/Command/_wpa_cli,
Completion/Unix/Command/.distfiles, Completion/Unix/Command/_lp,
Completion/Unix/Command/_pgrep,
Completion/Unix/Command/_subversion,
Completion/Unix/Command/_unison,
Completion/Unix/Command/_xournal, Completion/Unix/Type/_pdf,
Completion/X/Command/.distfiles, Completion/X/Command/_gv,
Completion/X/Command/_okular, Completion/X/Command/_pdftk,
Completion/X/Command/_vnc, Completion/X/Command/_xrandr: Various
new and improved completions.
2011-01-07 Peter Stephenson <pws@csr.com>
* 28590 (added a comment): Src/builtin.c, Test/B04read.ztst:
read builtin should return non-zero status on error.
* Mikael: 28585: Completion/Unix/Command/_mkdir: don't set ret=0
when _wanted fails to find any matches.
2011-01-06 Peter Stephenson <p.w.stephenson@ntlworld.com>
* unposted: Src/utils.c: fix argument type for write_loop().
* 28588: Src/text.c, Test/C02cond.ztst: fix textual display
after =~ test.
* Ben: 28574: Completion/Unix/Command/_ri: use bs formatter.
2011-01-06 Barton E. Schaefer <schaefer@zsh.org>
* 28579: Completion/Unix/Command/_du: propagate failure status
from _arguments so that _complete will try other completions.
* 28578 (plus test): Src/utils.c, Src/zsh.h, Test/B03print.ztst:
fix handling of numeric escapes that expand to "%" in printf
format strings, so they are not treated as format introducers.
2011-01-05 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 28568 c.f. 28549 (Ricky Zhou): Src/utils.c: buffer overflow
examining paths.
* Alexey: 28557: Completion/Unix/Command/_ri: update for new
versions of Ruby.
2010-12-25 Clint Adams <clint@zsh.org>
* 28548: Completion/Unix/Command/_fuser: match psmisc in any case.
2010-12-21 Barton E. Schaefer <schaefer@zsh.org>
* users/15662: Src/params.c: fix array slice assignment with one
index positive and one negative.
* unposted: Test/A06assign.ztst: tests for users/15662.
2010-12-21 Peter Stephenson <pws@csr.com>
* users/15663: Test/A06Assign.ztst: some (incomplete) array
assignment tests.
* unposted: Config/version.mk: update version to 4.3.11-dev-1.
2010-12-20 Peter Stephenson <pws@csr.com>
* unposted: Src/Makefile.inc: restore unintentionally removed
.PHONY entires.
* unposted: Config/version.mk, Src/Makefile.inc: release 4.3.11.
Tweak to Src/Makefile.inc was to workaround some make problem
with timestamps.
* Paul Ackersviller: 28538: as modified in 28540 plus a couple
of casts to char * I missed: Src/init.c,Src/input.c,
Src/parse.c, Src/prototypes.h, Src/utils.c, Src/Zle/zle_main.c:
pointer arithmetic needs to be done with char *, not void *.
2010-12-19 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 28537: Src/lex.c, Test/D04parameter.ztst: word splitting on
'((' in command position that turned into nested subshell
commands was broken.
2010-12-18 Barton E. Schaefer <schaefer@zsh.org>
* 27862 (belatedly): Completion/X/Utility/_x_arguments: handle
X11 versions greater than X11R6 in the compdef line.
* unposted: Src/Makefile.in: "prep" target depends on Makemod,
not on the files on which Makemod depends.
2010-12-17 Peter Stephenson <p.w.stephenson@ntlworld.com>
* Mikael: 28535: NEWS: typo
2010-12-17 Peter Stephenson <pws@csr.com>
* Štěpán Němec: 28533: README, Doc/Zsh/compsys.yo,
Doc/Zsh/compwid.yo, Doc/Zsh/contrib.yo, Doc/Zsh/expn.yo,
Doc/Zsh/params.yo, Doc/Zsh/zle.yo, Functions/Chpwd/cdr: typos.
* unposted: NEWS: note zle_highlight suffix control.
* Mikael: users/15653: Src/Zle/zle_refresh.c:
zle_highlight=(none) should turn off suffix highlighting.
2010-12-16 Peter Stephenson <pws@csr.com>
* Mikael: 28531: Completion/Base/Utility/_combination,
Doc/Zsh/expn.yo, Doc/Zsh/mod_clone.yo, Doc/Zsh/options.yo,
Src/exec.c: typos.
* unposted: NEWS: add notes on (Z) parameter flag.
* unposted: README, Config/version.mk, Etc/FAQ.yo,
Completion/Debian/Command/.distfiles: update for 4.3.10-test-3.
2010-12-14 Barton E. Schaefer <schaefer@zsh.org>
* 28530: Doc/Zsh/expn.yo, Src/subst.c, Test/D04parameter.ztst:
replace (z+opts+) flag with (Z:opts:), add reserved (_:flags:).
2010-12-14 Peter Stephenson <pws@csr.com>
* unposted: Src/lex.c: another neatening of lexflags use for
ZLE.
* 28529: Src/hist.c, Src/lex.c, Src/zsh.h, Src/Zle/compcore.c,
Src/Zle/compctl.c, Src/Zle/zle_tricky.c: save and restore
lexflags and separate out special word logic for ZLE by
adding new flag LEXFLAGS_ZLE.
* 28528: Doc/Zsh/expn.yo, Src/hist.c, Src/lex.c, Src/subst.c,
Src/zsh.h, Src/Zle/compcore.c, Src/Zle/compctl.c,
Src/Zle/zle_tricky.c, Test/D04parameter.ztst: clear up use of
zleparse variable into lexflags; add (z+n+) for splitting with
newline treated as ordinary whitespace.
2010-12-13 Peter Stephenson <pws@csr.com>
* 28526: Src/lex.c, Test/D04parameter.ztst: zplitting
'line # with comment' when stripping comments shouldn't generate
a newline at the end (unless there is one).
2010-12-12 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 28510: Doc/Zsh/expn.yo, Src/hist.c, Src/lex.c, Src/subst.c,
Src/Modules/parameter.c, Src/Zle/zle_hist.c, Src/Zle/zle_misc.c,
Test/D04parameter.ztst: add (z+c+) and (z+C+) parameter flags.
2010-12-07 Peter Stephenson <pws@csr.com>
* unposted: remove users/15622 which causes problems
with certain existing forms of testing commands.
2010-12-06 Peter Stephenson <p.w.stephenson@ntlworld.com>
* Mikael: 28480: Doc/Zsh/params.yo, Src/utils.c: allow
PROMPT_EOL_MARK to be an empty string.
2010-12-06 Peter Stephenson <pws@csr.com>
* users/15622: Completion/Base/Utility/_pick_variant: use
$service rather than $words[1] to pick the service. Although
there may be cases where this doesn't work, this provides
transparent behaviour for simple uses along the lines of
"compdef <_func> <cmd>=<service>"
* users/15621: Completion/compinit,
Completion/Base/Core/dispatch: fix setting service for compef
-p/-P.
* Mikael: 28487: Doc/Zsh/builtins.yo, Doc/Zsh/expn.yo,
Doc/Zsh/options.yo, Doc/Zsh/prompt.yo: fix docs to refer to
current directory rather than $PWD.
* 28486: Src/Zle/compcore.c: $compstate[parameter] needed
untokenizing.
* Mikael: 28484: Completion/Unix/Command/_du: updated for GNU
variant.
2010-12-05 Peter Stephenson <p.w.stephenson@ntlworld.com>
* unposted: NEWS: mention {START..END..STEP} changes.
* Mikael: 28474, 28478: Doc/Zsh/expn.yo, Src/glob.c,
Test/D09brace.ztst: extended {START..END..STEP} syntax.
* 28476: Test/.distfiles, Test/D09brace.ztst: new set of tests
for brace expansion.
* 28475: Test/A05execution.ztst: test that starting a background
job resets the status.
* 28469: Src/exec.c: fix memory leak in anonymous function.
2010-12-04 Wayne Davison <wayned@users.sourceforge.net>
* Aaron Schrab: 28210: Completion/Unix/Command/_git: add completion
for help subcommand.
2010-12-03 Peter Stephenson <pws@csr.com>
* 28468: Completion/Unix/Command/_man: if argument contains a
"/", complete file instead of manual page reference; prefer
files with man suffixes.
2010-11-30 Peter Stephenson <pws@csr.com>
* unposted: NEWS: add news about ${NAME:OFFSET} and took the
opportunity for a general tidy up.
2010-11-27 Barton E. Schaefer <schaefer@zsh.org>
* 28461: Src/exec.c: flush stderr in PRINT_EXIT_VALUE handling.
* users/15583: Functions/Misc/sticky-note: update with zstyles and
for ease of use in zle-line-init.
2010-11-27 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 28459: Src/utils.c: flush shell output in PROMPT_SP handling.
2010-11-25 Wayne Davison <wayned@users.sourceforge.net>
* 28445: Src/utils.c: overwrite PROMPT_SP string if it
should remain invisible, even with an upcoming newline.
2010-11-25 Peter Stephenson <pws@csr.com>
* Sebastian Stark: users/15581:
Completion/Zsh/Command/_zmodload: MacOS has .bundle DLL files.
* users/15580: Completion/Zsh/Function/_zsh-mime-handler,
Functions/MIME/zsh-mime-handler: fixes for completion when
dropping through to normal completion.
* 28434: Doc/Zsh/expn.yo, Src/subst.c, Test/D04parameter.ztst:
Make ${NAME:OFFSET} always use zero-offset.
2010-11-22 Peter Stephenson <pws@csr.com>
* 28424: Doc/Zsh/options.yo, Src/options.c, Src/utils.c,
Src/zsh.h, Test/A03quoting.ztst: New POSIX_STRINGS option
makes \0 in $'...' terminate the quoted string.
2010-11-20 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 28425: Src/subst.c: remove null arguments and untokenize
in check_colon_subscript().
2010-11-18 Peter Stephenson <pws@csr.com>
* 28419: Doc/Zsh/expn.yo, Src/subst.c, Test/D04parameter.ztst:
KSH_ARRAY ${*:0:1} gives $0 etc.
* 28418: Doc/Zsh/expn.yo, Src/lex.c, Src/params.c, Src/subst.c,
Test/D04parameter.ztst: add ${NAME:OFFSET} and
${NAME:OFFSET:LENGTH} substitution syntax.
2010-11-17 Peter Stephenson <pws@csr.com>
* 28377: Doc/Zsh/grammar.yo: document more alias problems.
2010-11-14 Clint Adams <clint@zsh.org>
* 28411: Completion/Unix/Command/_git: complete submodule
and annex as subcommands; complete files when the subcommand
is unknown.
2010-11-10 Clint Adams <clint@zsh.org>
* 28401: Completion/Debian/Command/_git-buildpackage:
git-buildpackage completion from Felipe Sateler.
2010-11-07 Peter Stephenson <p.w.stephenson@ntlworld.com>
* Mikael: 28389: Completion/Unix/Type/_java_class: empty section
in $CLASSPATH.
2010-11-03 Barton E. Schaefer <schaefer@zsh.org>
* 28384: Src/params.c: improve error message on assignment to a
field of a read-only hash.
2010-10-27 Peter Stephenson <pws@csr.com>
* unposted: Doc/Zsh/grammar.yo: typo pointed out by
Štěpán plus slight rephrasing.
* 28375: Doc/Zsh/grammar.yo: clarify how to quote aliases from
expansion.
2010-10-25 Peter Stephenson <pws@csr.com>
* 28363: Src/Zle/zle_refresh.c: inserting a character when a
wide character was at the end of the line didn't work.
2010-10-22 Peter Stephenson <pws@csr.com>
* 28360: Src/subst.c, Test/E01options.ztst: NO_UNSET option
should test parameters with following operators, too.
* not quite posted: Completion/Unix/Command/_screen: better to
allow sessions to be completed after -S.
2010-10-21 Peter Stephenson <p.w.stephenson@ntlworld.com>
* Silas Silva (with minor improvement): users/15464:
Completion/Unix/Command/_man: support for -M argument.
2010-10-18 Peter Stephenson <pws@csr.com>
* Jérôme Pouiller: 28351: Functions/Misc/run-help-openssl,
Functions/Misc/run-help-sudo: new help functions.
2010-10-17 Peter Stephenson <p.w.stephenson@ntlworld.com>
* Mikael: 28356: Src/Zle/zle_refresh.c: don't increment old
display line past NULL.
* c.f. 28353: Doc/Zsh/metafaq.yo: removing remaining reference
to sunsite in FTP sites.
2010-10-15 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 28345: Doc/Zsh/expn.yo, Functions/Chpwd/cdr, Src/builtin.c,
Src/utils.c: make new ${(D)} flag return the contracted file as
a fully usable command line argument.
2010-10-12 Barton E. Schaefer <schaefer@zsh.org>
* unposted (users/15440): Doc/Zsh/expn.yo: fix cross-references
among parameter expansion rules.
2010-10-12 Peter Stephenson <pws@csr.com>
* Mikael: 28343: Completion/Unix/Command/_setfacl: didn't
complete file argument in all cases.
2010-10-10 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 28340: Src/params.c: assignment with negative index didn't
work with multibyte characters.
* 28339: Src/hist.c: NO_HIST_LEX_WORDS didn't handle
backslash-newline line continuation properly, either.
* 28332: Src/hist.c: HIST_LEX_WORDS didn't handle
backslash-newline line continuation properly. Come to think of
it, neither does the alternative.
2010-10-10 Phil Pennock <pdpennock@users.sourceforge.net>
* 28338: Src/cond.c, C02cond.ztst: keep =~ from inverting sense
of subsequent tests (after &&/||).
2010-10-08 Peter Stephenson <pws@csr.com>
* Ben: 28330: Completion/X/Command/_acroread: add
completion for -openInNewInstance.
* Ben: 28329: Completion/X/Command/_acroread: version 9 is
similar to 7 and 8.
2010-10-07 Peter Stephenson <pws@csr.com>
* 28327: Src/hist.c: Fix bufferwords() splitting when RC_QUOTES
is turned on.
2010-10-06 Peter Stephenson <pws@csr.com>
* 28326: Src/hist.c, Test/D04parameter.ztst: Problems with
HIST_LEX_WORDS: memory allocation was screwed if we skipped
"words" from the lexer; use local heap to avoid silly amounts of
memory; fallback to non-lex on failure rather than just fixing
up at the end; workaround oddity with splitting with RC_QUOTES.
* 28319: Src/hist.c, Test/D04parameter.ztst: ${(z)...}
splitting oddities and some tests for consistency.
* 28285: Doc/Zsh/zle.yo, Src/Zle/zle_hist.c: add
zle-isearch-update and zle-isearch-exit hooks.
2010-10-02 Peter Stephenson <p.w.stephenson@ntlworld.com>
* unposted: NEWS: note HIST_LEX_WORDS option.
* 28310 with 28308 (Bart): Doc/Zsh/options.yo, Src/hist.c,
Src/options.c, Src/zsh.h: HIST_LEX_WORDS option and check
for full history file read.
* 28309: Src/subst.c: infinite loop when padding with extra wide
characters.
* Mikael: 28301: Doc/Zsh/compsys.yo: restore missing line.
2010-10-01 Oliver Kiddle <opk@zsh.org>
* 28307: Completion/Zsh/Command/_zstyle: support new styles
especially vcs_info ones and allow quoted contexts again
2010-09-25 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 28295 plus tweak for failure case: Src/hist.c: use lexer to
split words from history file.
2010-09-23 Peter Stephenson <pws@csr.com>
* unposted: Doc/Zsh/manual.yo: update address of HTML manual.
2010-09-20 Peter Stephenson <pws@csr.com>
* 28282: Src/Zle/zle_keymap.c, Src/Zle/zle_main.c,
Src/zle_utils.c: new function zlecallhook() and fix argument to
zle-keymap-select.
2010-09-19 Barton E. Schaefer <schaefer@zsh.org>
* 28268: Src/builtin.c: I/O to a terminated (or never created)
coprocess emits a "no coprocess" diagnostic, instead of either
nothing or "bad file number".
2010-09-16 Peter Stephenson <pws@csr.com>
* Baptiste: 28264: Completion/Unix/Command/_ffmpeg: remove the
need for sed.
2010-09-15 Wayne Davison <wayned@users.sourceforge.net>
* 28261: Julius Plenz: Completion/Debian/_dpkg: separate the
options to _arguments.
2010-09-14 Peter Stephenson <pws@csr.com>
* 28259: Src/exec.c, Src/lex.c, Src/parse.c, Src/text.c,
Src/zsh.h, Test/A04redirect.ztst: Fix bug that empty
here-documents were given a newline, and output here-documents
from shell text as real here-documents rather than here-strings.
* 28258: Src/signals.c: bug in 28250 could cause undefined
variable resulting in mayhem.
2010-09-13 Peter Stephenson <pws@csr.com>
* unposted: NEWS: add POSIX_TRAPS
* Mikael: 28252: Completion/Zsh/Command/_zle: remove unnecessary
looped that caused errors.
2010-09-12 Peter Stephenson <p.w.stephenson@ntlworld.com>
* unposted: Doc/Zsh/builtins.yo: note exit trap runs before
zshexit hook.
* 28250: Doc/Zsh/options.yo, Src/options.c, Src/signals.c,
Src/zsh.h, Test/C03traps.ztst: POSIX_TRAPS option.
* Mikael: 28253: Doc/Zsh/mod_attr.yo: document -h argument to
attribute commands.
2010-09-08 Peter Stephenson <pws@csr.com>
* unposted: Functions/Zle/replace-string-again: safety on
regexp failures.
* 28244 with typo noted by Mikael and Bart: NEWS: updated 4.3.11
news.
* 28241: Doc/Zsh/zle.yo, Src/Zle/zle_keymap.c: don't list .safe
keymap with "bindkey -lL", you don't get there from here.
* 28237: Doc/Zsh/params.yo, Doc/Zsh/zle.yo, Src/Zle/zle_main.c:
set ZLE_LINE_ABORTED to line so far when ZLE aborts on an error.
2010-09-06 Peter Stephenson <pws@csr.com>
* unposted: Doc/Zsh/zle.yo: small typo.
2010-09-05 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 28226, 28229: Doc/Zsh/zle.yo, Src/Zle/zle_keymap.c: "bindkey
-lL" now lists aliased keymaps in a more useful way; can list
individual keymaps.
* 28227: Doc/Zsh/zle.yo: a few remarks on the question of
keymaps.
2010-09-02 Peter Stephenson <pws@csr.com>
* users/15350: Doc/expn.yo: explain the strange rounding rules for
size glob qualifier.
2010-09-01 Peter Stephenson <pws@csr.com>
* 28188: Doc/Zsh/mod_complist.yo, Doc/Zsh/zle.yo: better
documentation for limitations in the overlay key maps.
2010-08-31 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 28220: Src/exec.c (plus comments), Src/params.c,
Test/A06assign.ztst: "HELLO=$HELLO shellfunc" failed because
we removed HELLO from the parameter table to save it. Copy it
instead.
* Mikael: 28202: Src/Zle/complist.c: need line unmetafied for
reversemenucomplete().
2010-08-23 Peter Stephenson <pws@csr.com>
* Mikael: 28190: Doc/Zsh/options.yo: reference to wrong
manual page.
* unposted: Completion/Unix/Command/_perforce: update for 2010.1.
2010-08-22 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 28179: Src/jobs.c, Src/signals.c: use WIFCONTINUED() and
WCONTINUE by exporting child handler to a function.
* users/15314: Doc/Zsh/expn.yo: redescribe process substitution.
* users/15310 (bits applying to process substitution with
redirection): Src/exec.c: make redirection process substitution
attach to the appropriate process group.
* users/15200: pass foreground signals on to process
substitutions in current shell
2010-08-22 Barton E. Schaefer <schaefer@zsh.org>
* 28186: Completion/Base/Utility/_multi_parts: replace a single
(...|...) pattern-match with a loop over the alternatives to
avoid issues with pattern-quoting each alternative.
2010-08-21 Frank Terbeck <ft@bewatermyfriend.org>
* Mikael Magnusson: 28181: Doc/Zsh/mod_zprof.yo: Remove a
stray `)' that caused a ".RE" string to be output
2010-08-19 Peter Stephenson <pws@csr.com>
* unposted: Completion/Unix/Command/_todo.sh: more commands.
2010-08-18 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 28172: Src/jobs.c: mark processes as not stopped if
sent SIGCONT.
2010-08-15 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 28167: Src/Zle/compresult.c: reset more variables when
invalidating completion list.
2010-08-13 Peter Stephenson <pws@csr.com>
* 28160 modified as per 28164: Src/Zle/zle_refresh.c: when the
display was reset we didn't properly mark the old display line
as invalid. This could mean the display didn't get redrawn
properly.
2010-08-11 Peter Stephenson <pws@csr.com>
* 28139: based on Frank Terbeck: 28122: Src/Zle/zle_params.c,
Doc/Zsh/zle.yo: add ZLE_STATE variable.
2010-08-10 Clint Adams <clint@zsh.org>
* unposted: Functions/Newuser/zsh-newuser-install: tweak
newline placement.
2010-08-10 Peter Stephenson <pws@csr.com>
* unposted: Completion/Unix/Command/_todo.sh: need care matching
initial whitespace; strip priorities to get text to replace.
2010-08-08 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 28137: Functions/MIME/zsh-mime-handler: $argv[0] should be
$argv[1].
2010-08-07 Peter Stephenson <p.w.stephenson@ntlworld.com>
* Simon Ruderich: 28136: README: typo.
2010-08-06 Peter Stephenson <pws@csr.com>
* 28131: MACHINES: latest status on Cygwin.
* users/15232: Completion/Unix/Type/_path_files: somehow
this didn't get completed.
2010-08-05 Peter Stephenson <pws@csr.com>
* users/15232: Completion/Unix/Type/_path_files: another
go at fixing up for bizarre quoting rules, c.f. users/15031.
2010-08-05 Peter Stephenson <p.w.stephenson@ntlworld.com>
* Holger Macht: 28130: Completion/Unix/Command/_osc: new
completion.
2010-08-02 Frank Terbeck <ft@bewatermyfriend.org>
* Seth House: 28115: Misc/vcs_info-examples: Another git example
hook.
* Seth House: 28114:
Functions/VCS_Info/Backends/VCS_INFO_get_data_git: Fix revision
lookup with packed repositories.
2010-08-02 Peter Stephenson <pws@csr.com>
* Daiki Ueno: 28112: Src/Zle/zle_refresh.c: missing parentheses
caused incorrect size for character width.
2010-07-31 Peter Stephenson <p.w.stephenson@ntlworld.com>
* users/15219: Src/jobs.c: print exit status if PRINTEXITVALUE
and terminated by signal.
* 28111: Src/jobs.c: always print exit status if PRINTEXITVALUE
is set.
* users/15217: Src/Zle/zle_main.c: use top-level status
when redrawing prompt.
2010-07-30 Frank Terbeck <ft@bewatermyfriend.org>
* Mikael Magnusson: 28110: Doc/Zsh/compsys.yo: Fix yodl warning.
* unposted: Fix a date in ChangeLog.
2010-07-29 Peter Stephenson <pws@csr.com>
* <hamer@hamer.org.ua>: 28104: Src/Zle/compcore.c: crash
in obscure completion case due to NULL pointer.
2010-07-28 Peter Stephenson <pws@csr.com>
* users/15204: Functions/Zftp/zfinit: check compctl is loaded
before trying to use it (for ksh emulation).
* as described in users/15202: Functions/Misc/run-help,
Functions/Newuser/zsh-newuser-install,
Functions/Prompts/promptinit, Functions/TCP/tcp_open,
Functions/Zftp/zfinit, Functions/Zle/down-case-word-match,
Functions/Zle/forward-word-match,
Functions/Zle/history-pattern-search,
Functions/Zle/insert-composed-char, Functions/Zle/kill-word-match,
Functions/Zle/match-words-by-style,
Functions/Zle/select-word-style,
Functions/Zle/transpose-words-match,
Functions/Zle/up-case-word-match, Functions/Zle/zed-set-file-name:
Use "autoload -Uz" consistently throughout distributed functions.
2010-07-26 Peter Stephenson <pws@csr.com>
* 28102: Src/Zle/computil.c: use lstat() when checking
ignore-parents.
2010-07-26 Frank Terbeck <ft@bewatermyfriend.org>
* 28101: Completion/Unix/Command/_tmux: Fix window completion
for tmux version 1.3 and newer.
2010-07-25 Peter Stephenson <p.w.stephenson@ntlworld.com>
* unposted: Config/version.mk: update to 4.3.10-dev-2.
2010-07-24 Wayne Davison <wayned@users.sourceforge.net>
* 28000: Completion/Unix/Command/_git: make the branch arg for
"git log" optional.
2010-07-20 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 28096: Functions/Chpwd/chpwd_recent_dirs: don't add
$OLDPWD.
* 28081: Doc/Zsh/contrib.yo,
Functions/Chpwd/chpwd_recent_filehandler: document style
stuff with cdr, future-proof file reading.
2010-07-19 Peter Stephenson <pws@csr.com>
* 28092: Completion/Unix/Command/_getconf: generate missing keys.
2010-07-19 Frank Terbeck <ft@bewatermyfriend.org>
* 28093, based on Michel Lespinasse: 28090:
Functions/VCS_Info/Backends/VCS_INFO_get_data_git: Fix a problem
with `check-for-changes' and freshly initialised repositories.
* Seth House: 28084, 28083: Misc/vcs_info-examples: cleanups
and new examples.
* 28095: Functions/VCS_Info/Backends/VCS_INFO_get_data_git: Fix
two hard-coded invocations of the "git" command.
2010-07-15 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 28073: Src/exec.c, Src/init.c, Src/utils.c: allow #!
scripts to search path if interpreter not found.
2010-07-15 Doug Kearns <dougkearns@gmail.com>
* 28078: Completion/Unix/Command/_xmlsoft: update.
* Michael Hwang: 28075: Completion/Unix/Command/_gpg: add gpg-zip
completion and other general improvements.
2010-07-13 Peter Stephenson <pws@csr.com>
* Jörg Sommer: 28063: Completion/Unix/Command/_rubber: suppress
warning messages when extracting output.
2010-07-12 Peter Stephenson <pws@csr.com>
* 28068: Doc/Zsh/contrib.yo: Texinfo declaration got wrapped
causing mayhem.
2010-07-12 Frank Terbeck <ft@bewatermyfriend.org>
* users/15165: Doc/Zsh/contrib.yo: Fix a warning about a
missing macro.
2010-07-09 Peter Stephenson <pws@csr.com>
* 28065: Doc/Zsh/contrib.yo, Functions/Chpwd/.distfiles,
Functions/Chpwd/cdr, Functions/Chpwd/_cdr,
Functions/Chpwd/chpwd_recent_add,
Functions/Chpwd/chpwd_recent_dirs,
Functions/Chpwd/chpwd_recent_filehandler, plus Src/zsh.mdd
(not posted): add cdr function, tools, and documentation.
2010-06-30 Clint Adams <clint@zsh.org>
* 27998, 28061, 28062: Functions/Newuser/zsh-newuser-install:
add recommended zshrc option.
* 28060: Completion/Unix/Command/_xmlsoft: xmlsoft --nodtdattr