-
Notifications
You must be signed in to change notification settings - Fork 3
/
ChangeLog
17163 lines (10982 loc) · 560 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
2021-01-24 Paul Seyfert <pseyfert.mathphys@gmail.com>
* github #71 (tweaked): Completion/X/Command/_xrandr: Complete
providers
2021-01-23 Bart Schaefer <schaefer@zsh.org>
* users/26406: Functions/Misc/zargs: preserve caller setopts
2021-01-20 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>
* 47849: Test/E01options.ztst, Test/V08zpty.ztst,
Test/W02jobs.ztst, Test/X02zlevi.ztst, Test/X03zlebindkey.ztst,
Test/X04zlehighlight.ztst, Test/Y01completion.ztst,
Test/Y02compmatch.ztst, Test/Y03arguments.ztst: do not skip
tests that require zpty on Cygwin
* Peiyuan Song: 47840: Src/Modules/zpty.c, configure.ac: make
zpty module work on Cygwin
2020-12-12 dana <dana@dana.is>
* unposted: NEWS: Catch up on new features
2020-12-11 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>
* 47731 (+unposted): Functions/Misc/run-help-btrfs,
Doc/Zsh/contrib.yo: add run-help assistant for btrfs command.
(based on the patch by Samir Benmendil in 43947)
* Samir Benmendil: 43946: Functions/Misc/run-help-sudo: call
run-help (instead of man) for the command given to sudo
2020-12-05 Bart Schaefer <schaefer@zsh.org>
* unposted: Doc/Zsh/compsys.yo: index compprefuncs and comppostfuncs
2020-12-04 Daniel Shahaf <d.s@daniel.shahaf.name>
* 47716: Etc/BUGS: Add Aleksandr's vcs_info patch.
2020-12-02 Bart Schaefer <schaefer@zsh.org>
* 47704: Src/Modules/param_private.c: fix scope for "private -p"
2020-12-01 Bart Schaefer <schaefer@zsh.org>
* unposted: Etc/BUGS: Add users/26150 (multios + exec)
2020-11-16 ivan tkachenko <me@ratijas.tk>
* 47547: Doc/Zsh/arith.yo: docs: Specify the exact kind of
quoting which is assumed when parsing arithmetic expressions
2020-11-16 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>
* 47560: configure.ac, aczsh.m4: add necessary includes or
prototypes for the tests in configure (fix errors in macOS 11)
2020-10-29 Oliver Kiddle <opk@zsh.org>
* users/26107: Completion/Unix/Command/_git: complete changed
files after git diff HEAD
2020-10-25 Mikael Magnusson <mikachu@gmail.com>
* Jun-ichi Takimoto: 47301: Src/builtin.c: Fix print -v
metafication
* 47302: Test/B03print.ztst, Test/D07multibyte.ztst: Test for
print -v fix
* 47494, 47495: Completion/Zsh/Command/_strftime,
Doc/Zsh/mod_datetime.yo, Src/Modules/datetime.c,
Test/V09datetime.ztst: Add -n option to strftime
2020-10-18 Roman Perepelitsa <roman.perepelitsa@gmail.com>
* 47476: Src/Modules/files.c: Fix a race condition in zf_mkdir -p
(based on the patch by Matthew Martin in workers/47436)
2020-10-18 Axel Beckert <abe@deuxchevaux.org>
* 47468: Doc/Zsh/contrib.yo: Fix typo
2020-10-03 Daniel Shahaf <d.s@daniel.shahaf.name>
* users/26088: Doc/Zsh/zle.yo: docs: zle -R: Clarify that it
needs not be called in the normal course of things, but only
when an immediate, interim redisplay is desired.
2020-09-23 Meng Bo <mengbo@lnu.edu.cn>
* github #65: Completion/Unix/Command/_nmap: Rename option flags
(s/_/-/g)
2020-09-22 Jacob Menke <linux.dev25@gmail.com>
* 47395: Completion/Base/Utility/_store_cache: Don't leak the
variable ${_cache_dir}.
2020-09-13 Bart Schaefer <schaefer@zsh.org>
* Mikael Magnusson: 47382: Completion/Zsh/Context/_brace_parameter:
Completion for 47364
* 47364: Doc/Zsh/expn.yo, Src/subst.c, Src/zsh.h, Test/D02glob.ztst:
Enable extendedglob in pattern with ${(*)name/pattern/replacement}
2020-09-09 Stephane Chazelas <stephane@chazelas.org>
* 47352 (+ extra test cases): Src/prompt.c, Test/D01prompt.ztst:
fix %<n>K prompt expansion (regression introduced in 5.0.3).
2020-09-05 Doug Kearns <dougkearns@gmail.com>
* unposted: Completion/Unix/Command/_lp,
Completion/Unix/Command/_transmission, Completion/X/Command/_code,
Completion/X/Command/_kdeconnect, Completion/Zsh/Command/_zstyle:
Remove periods from completion descriptions as per the
completion-style-guide recommendations.
2020-09-04 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 47350; Completion/Unix/Command/_dropbox: new completion.
2020-08-28 Daniel Shahaf <d.s@daniel.shahaf.name>
* github #64: Src/Modules/curses_keys.awk: Fix a build-time
error when building against ncurses that hadn't been built
with --enable-wgetch-events. (Reported by Martin Liska.)
2020-08-21 Oliver Kiddle <opk@zsh.org>
* 47328: Doc/Zsh/metafaq.yo, Etc/CONTRIBUTORS: remove references
to old zsh.org mail addresses
* 47322: Completion/Unix/Command/_ssh: allow prefix with ssh
cipher completion and add matching control for options
2020-08-18 Daniel Shahaf <d.s@daniel.shahaf.name>
* 47323: Completion/Redhat/Command/_rpm: _rpmbuild: Complete
file arguments after -r/-b/-t.
2020-08-16 Mikael Magnusson <mikachu@gmail.com>
* 47304: Completion/Zsh/Type/_globflags: support specifying more
than one flag where appropriate
* 47305: Functions/Zle/edit-command-line: when possible, set
$BUFFER directly
* 47306: Completion/Zsh/Command/_zstyle, Doc/Zsh/contrib.yo,
Functions/Zle/edit-command-line: add editor style
* 47307: Functions/Zle/edit-command-line: restrict editing to
region if it is active
2020-08-16 Daniel Shahaf <d.s@daniel.shahaf.name>
* 47314 (+ extra test case): Test/Z01is-at-least.ztst: is-at-least
false positive (5.8.0.2 / 5.8)
* 47313: Doc/Zsh/expn.yo: docs: Document explicitly that the
:P modifier returns a symlink-less path.
2020-08-13 Oliver Kiddle <opk@zsh.org>
* Jörg Sommer: 47320: Completion/Linux/Command/_choom: Add
completion for Linux tool used to adjust process OOM score
* 47321: Completion/Linux/Command/_btrfs: update for btrfs 5.4
* 47319: Completion/Unix/Command/_imagemagick: complete more
options to ImageMagick's convert command
2020-08-10 Oliver Kiddle <okiddle@yahoo.co.uk>
* 47294: Completion/Debian/Command/_aptitude: updates to options
* 47293: Completion/Unix/Command/_lp: lowercase descriptions
2020-08-10 Daniel Shahaf <d.s@daniel.shahaf.name>
* 47308: Etc/zsh-development-guide: Document the new X-Seq
autoreply bot.
2020-08-09 Daniel Shahaf <d.s@daniel.shahaf.name>
* 47303: Functions/VCS_Info/Backends/VCS_INFO_get_data_hg,
Functions/VCS_Info/VCS_INFO_set-patch-format: vcs_info hg:
Fix changing the expansion of %g (hook_com[guards]) in the
set-patch-format hook (regression from workers/40480).
2020-08-08 Daniel Shahaf <d.s@daniel.shahaf.name>
* unposted: Doc/Zsh/metafaq.yo, Etc/FAQ.yo: Update documentation
for the move to new hosting.
* 47296 (+ unposted additional tests and comments): Src/loop.c,
Test/A05execution.ztst: 'repeat' loops: Let the repeat count
use $?.
* 47300: Src/parse.c, Src/zsh.h: Document the EC_NODUP, EC_DUP,
EC_DUPTOK triplet.
2020-08-08 Mikael Magnusson <mikachu@gmail.com>
* unposted: Completion/BSD/Command/_kdump,
Completion/BSD/Type/_ktrace_points: fix syntax errors in
completers added in 45940
2020-08-05 Mikael Magnusson <mikachu@gmail.com>
* unposted: Completion/compinit: add help text for -w
* 46280: Completion/compinit: add -w to explain why compdump runs
2020-07-29 Roman Perepelitsa <roman.perepelitsa@gmail.com>
* unposted: Src/zsh.h: comments explaining how hashtable must
be created
2020-07-28 Roman Perepelitsa <roman.perepelitsa@gmail.com>
* 46275: Src/hashtable.c, Src/zsh.h: eliminate undefined behavior
caused by redefinition of hashtable
2020-07-27 Roman Perepelitsa <roman.perepelitsa@gmail.com>
* 46268: Src/exec.c: suppress a useless compiler warning
around nice()
2020-07-14 Daniel Shahaf <d.s@daniel.shahaf.name>
* 46244 (cont.): Etc/creating-a-release.txt: Flesh out the TODO
from the previous commit.
* 46244: Etc/creating-a-release.txt: Start to introduce a
release managers keyring.
2020-07-14 oxiedi <oxiedi@yandex.ru>
* github #61: Completion/Zsh/Type/_parameters: Don't leak the
variable $i
2020-07-13 Daniel Shahaf <d.s@daniel.shahaf.name>
* 46240: Doc/Zsh/builtins.yo, Doc/Zsh/contrib.yo,
Doc/Zsh/jobs.yo, Doc/Zsh/params.yo, Doc/ztexi.yo: Make the
expansion of manref()() in ztexi.yo match its expansion in
zman.yo.
2020-07-12 Daniel Shahaf <d.s@daniel.shahaf.name>
* 46183: Test/D03procsubst.ztst: New XFail test: external
command with =(...) on LHS of pipeline cleans up its tempfiles.
* unposted (cf. GitHub #11): Misc/vcs_info-examples: vcs_info
hg: docs: Change an example to not use a hex dump incantation
that may replace some bytes' values with asterisks.
* users/24985: Doc/Zsh/expn.yo: Clarify documentation of the
${(n)} and ${(-)} parameter expansion flags, and add a forward
compatibility hatch to the latter.
* 46204: Test/E01options.ztst: Fix new test case for the
theoretical case of having more than 100 files in the root
directory.
* unposted: .editorconfig: For Makefiles, make the indent size
equal to tab width.
2020-07-11 dana <dana@dana.is>
* Cedric Ware: 46152: Src/Modules/system.c, Test/V14system.ztst:
Re-allow '0' timeout in zsystem flock
2020-07-09 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>
* 46215 (w/ minor tweak): Test/E01options.ztst: make the test
added by 46175/0002 work on wider systems, and skip the test
on Cygwin.
2020-07-08 Oliver Kiddle <okiddle@yahoo.co.uk>
* 46216: Completion/Unix/Command/_ansible: update for ansible 2.9
* 46217: Completion/Unix/Command/_tmux: update options for tmux 3.1
* github #60: Mathias Fredriksson: Completion/Unix/Type/_zfs_dataset:
Fix completion for a zfs dataset containing spaces
* gitlab !15: Doron Behar: Completion/Linux/Command/_modutils:
Fix FHS assumption
* 46201 (tweaked per Daniel): Etc/completion-style-guide: add
guidelines for caching and use of imperative mood in descriptions
* 46195: Completion/X/Type/_x_color: use showrgb command to get
colours if it is available
* github #50: SATOH Fumiyasu: Completion/Unix/Type/_ssh_hosts:
Complete hosts in "Match" directive
* github #53: James Pike: Completion/Unix/Type/_remote_files:
allow specifying directory name.
2020-07-07 Bart Schaefer <schaefer@brasslantern.com>
* 46189: Test/comptest: Ignore exit status of final zpty_flush
2020-07-07 Nuri Jung <jnooree@gmail.com>
* github #58: Doc/Zsh/mod_regex.yo: docs: Note that the zsh/regex
syntax is platform-dependent.
2020-07-06 Pete Moore <pmoore@mozilla.com>
* 46194: Doc/Zsh/metafaq.yo: docs: metafaq: Remove spurious
closing bracket
2020-07-05 Daniel Shahaf <d.s@daniel.shahaf.name>
* 46175/0003: Src/exec.c, Test/E01options.ztst: Fix the
RM_STAR_SILENT bug from the parent commit.
* 46175/0002: Test/E01options.ztst: Add a regression test for
46169: the RM_STAR_SILENT logic processes the current directory
rather than the root directory.
* 46175/0001: Test/E01options.ztst: Add a unit test for the
RM_STAR_SILENT option.
* 46174/0002: Test/comptest: test harness: Restore indentation
after the previous commit. No functional change.
* 46174/0001: Test/comptest: test harness: Plug a symlink attack
2020-07-03 Matthew Martin <phy1729@gmail.com>
* 46168: Src/builtin.c, Test/B01cd.ztst: Update $PWD and call
chpwd hook after normalizing path.
2020-07-03 Daniel Shahaf <d.s@daniel.shahaf.name>
* unposted (cf. users/24972, users/24978): Doc/Zsh/expn.yo:
Use an ASCII hyphen/minus rather than a dash.
2020-07-03 Peter Stephenson <p.w.stephenson@ntlworld.com>
* users/24971: Doc/Zsh/expn.yo, Src/sort.c, Src/subst.c,
Src/zsh.h, Test/D04parameter.ztst: Add parameter flag (-)
to allow signed numeric sorting.
2020-06-28 zsugabubus <zsugabubus>
* 46097: Completion/Unix/Command/_rm: Fix "assignment to invalid
subscript range" error in _rm.
2020-06-28 Daniel Shahaf <d.s@daniel.shahaf.name>
* 46132: Doc/Zsh/expn.yo: docs: Use an itemized list in the
documentation of the *(o) glob qualifier.
* 46131: Completion/Unix/Command/_git: _git-config: Partly
fix a bug whereby a 'foo.ba<TAB>' wouldn't be completed to
'foo.bar.baz'.
* 46128: Completion/Unix/Command/_git: Complete more options
and diff/merge tools.
* 46129: Completion/Unix/Command/_git: _git-config: Fix a bug
where a second trailing dot would be incorrectly offered.
* 46130: Completion/Unix/Command/_git: _git-config: Complete
some more options.
2020-06-27 Miroslav Koškár <mk@mkoskar.com>
* 46140: Completion/Unix/Command/_git: Fix insufficiently
quoted pattern
* 46139: Completion/Unix/Command/_git: Remove hanging whitespaces
2020-06-27 Daniel Shahaf <d.s@daniel.shahaf.name>
* unposted (after 46068): Src/Zle/zle_utils.c: Fix a compiler
warning.
* 46072 + 46136: Doc/Zsh/contrib.yo, Doc/Zsh/zle.yo,
Functions/Misc/add-zle-hook-widget, Src/Zle/zle_thingy.c,
Test/X04zlehighlight.ztst: Add the 'zle $widget -f nolast'
syntax, to improve add-zle-hook-widget support for multiple
hook functions.
* users/24959/0002: Doc/Zsh/grammar.yo: Update aliases
documentation for the addition of the ALIAS_FUNC_DEF option.
* users/24959/0001: Doc/Zsh/builtins.yo, Doc/Zsh/grammar.yo:
Extend documentation of global aliases.
2020-06-26 Daniel Shahaf <d.s@daniel.shahaf.name>
* unposted: Doc/Zsh/contrib.yo, Doc/Zsh/expn.yo,
Doc/Zsh/mod_mapfile.yo, Etc/FAQ.yo: docs: Fix some markup
and typos.
2020-06-26 Peter Stephenson <p.stephenson@samsung.com>
* 46110: Src/subst.c, Test/D03procsubst.ztst: If =subst occurs
before =(subst) we should allow for the possibility of the latter.
2020-06-26 Oliver Kiddle <okiddle@yahoo.co.uk>
* unposted c.f. 46034: Completion/Unix/Command/_gpg: workaround
incompatibility with sh_file_expansion option
* 46106: Completion/BSD/Command/_usbconfig: new completion
* 46105: Completion/X/Command/_xinput: new xinput completion
* 46075: drelo: Completion/Unix/Type/_find_net_interfaces:
prefer ip on linux for finding network interfaces
* 45895: oxiedi: Completion/Base/Utility/_sequence,
Test/Y01completion.ztst: ignore dedup patterns in _sequence
2020-06-25 Daniel Shahaf <d.s@daniel.shahaf.name>
* 46068 (tweaked) (was: github #57): Doc/Zsh/zle.yo, README,
Src/Zle/zle.h, Src/Zle/zle_refresh.c, Src/Zle/zle_utils.c,
Src/prompt.c, Test/X04zlehighlight.ztst: region_highlight:
Add memo= support.
* 46102: Test/ztst.zsh: test harness: Make the XPass message
distinct from the Fail message.
2020-06-22 Peter Stephenson <p.stephenson@samsung.com>
* 46079: Src/math.c, Test/C01arith.ztst: Ignore double quotes in
math expression: treat as white space.
2020-06-22 Manuel Jacob <me@manueljacob.de>
* 46091: Doc/Zsh/contrib.yo,
Functions/VCS_Info/Backends/VCS_INFO_get_data_hg: Add code to
Mercurial VCS backend to show topic if there is any.
2020-06-19 Daniel Shahaf <d.s@daniel.shahaf.name>
* 46044 (tweaked per Matthew): Completion/Unix/Command/_units:
Correct the path to the units data file on Debian with units
2.00 and newer and on FreeBSD.
2020-06-18 Daniel Shahaf <d.s@daniel.shahaf.name>
* 46067: Test/A05execution.ztst: Add a unit test for
workers/46060.
2020-06-18 Peter Stephenson <p.stephenson@samsung.com>
* 46060: Src/jobs.c: Ensure process has been signalled before
taking special action for SIGINT or SIGQUIT.
2020-06-17 Eric Cook <llua@gmx.com>
* 45982: Frederick Zhang: Completion/Unix/Command/_zfs:
Add space read-only property
2020-06-17 Daniel Shahaf <d.s@daniel.shahaf.name>
* unposted: Util/ztst-syntax.vim: internal: ztst.vim: Recognize
empty "F:" line as well, as the test harness does.
2020-06-17 Miroslav Koškár <mk@mkoskar.com>
* 46049: Doc/Zsh/options.yo: docs: Correct the sense of the
single-letter abstract of the GLOBAL_RCS option (-d)
2020-06-11 Oliver Kiddle <okiddle@yahoo.co.uk>
* gitlab !12: Jan Máslo: Completion/Linux/Command/_mat,
Completion/Linux/Command/_mat2: new completions
* 46036: Completion/Zsh/Type/_ps1234: fix colouring in prompt
completion
* users/24892: Completion/Unix/Type/_files,
Completion/Zsh/Command/_zstyle: fix local declaration with
recursive-files style and complete it for zstyle
2020-06-10 Daniel Shahaf <d.s@daniel.shahaf.name>
* unposted: Doc/Zsh/mod_zutil.yo: zstyle docs: Fix typo.
2020-06-09 Peter Stephenson <p.stephenson@samsung.com>
* 46026: Doc/Zsh/options.yo, Src/exec.c, Src/options.c,
Src/zsh.h, Test/A04redirect.ztst: Add CLOBBER_EMPTY option.
2020-06-08 Peter Stephenson <p.w.stephenson@ntlworld.com>
* uwers/24909: Src/exec.c: Don't clean up files used for
substitution until after function has run.
2020-06-08 Doron Behar <doron.behar@gmail.com>
* gitlab !14 (fixup): Completion/Linux/Command/_modutils:
modutils comp: Fix getting the value of kver from opt_args
2020-06-07 Daniel Shahaf <d.s@daniel.shahaf.name>
* 45932: Etc/FAQ.yo: FAQ (3.1): Update ksh compatibility answer
for reserved word typeset.
* 45933: Etc/FAQ.yo: FAQ: Add "Why does my bash script report
an error when I run it under zsh?".
* 45791 (tweaked): Etc/FAQ.yo, Util/zyodl.vim: FAQ: Explain
how to binary search one's dotfiles
* unposted: Etc/FAQ.yo: FAQ: Update section number in links to
the "The future of zsh" section.
2020-06-06 Daniel Shahaf <d.s@daniel.shahaf.name>
* unposted: Etc/BUGS: Add users/24904 to Etc/BUGS (a process
substitution / forking issue).
2020-06-05 Mikael Magnusson <mikachu@gmail.com>
* 45985: Src/builtin.c: typeset: Fix leaving corrupted entries
in paramtab
2020-06-03 Yasuhiro KIMURA <yasu@utahime.org>
* 45950: configure.ac: Fix 'make install' in out-of-tree
tarball builds.
2020-06-01 Matthew Martin <phy1729@gmail.com>
* 45940: Completion/BSD/Command/_kdump,
Completion/BSD/Command/_ktrace,
Completion/BSD/Type/_ktrace_points: Add _kdump and _ktrace
completers and supporting _ktrace_points type.
* 45939: Completion/Linux/Command/_ionice,
Completion/Unix/Command/_lsof, Completion/Unix/Command/_pgrep,
Completion/Unix/Command/_renice, Completion/Unix/Type/_pgids:
Add _pgids type.
2020-06-01 Doron Behar <doron.behar@gmail.com>
* gitlab !14: Completion/Linux/Command/_modutils: modutils
completion: Fix getting the value of kver from opt_args
2020-05-30 Bart Schaefer <schaefer@zsh.org>
* 45915: Src/utils.c: fix handling of hyphens in spckword()
2020-05-28 Yasuhiro KIMURA <yasu@utahime.org>
* 45934: Completion/Unix/Command/_subversion: Make 'svnliteadmin'
completed same as 'svnadmin'
2020-05-28 Daniel Shahaf <d.s@daniel.shahaf.name>
* unposted: Util/zyodl.vim: Highlight the word "note", like
ft=help does.
* unposted: Util/zyodl.vim: Highlight yodl continuation line
marker
* 45923 (with memory leak fixed, cf. 45924): Src/Modules/zprof.c,
Src/exec.c: zprof: Don't tally all anonymous functions as though
they were a single function named "(anon)".
2020-05-23 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 45900: Src/lex.c, Test/D04parameter.ztst: Fix issues with
escaped newline in $-substitution.
2020-05-21 Daniel Shahaf <d.s@daniel.shahaf.name>
* 45884 (Oliver's, edited by me): Etc/BUGS: Add a few entries.
2020-05-20 Daniel Shahaf <d.s@daniel.shahaf.name>
* 45862: Test/D04parameter.ztst: Add test cases for 45843#1
and 45843#2, adapted from Aaron Esau and pws.
2020-05-17 Eitan Adler <lists@eitanadler.com>
* Eitan Adler: unposted: config.guess, config.sub: update to
2020-04-26.
2020-05-17 Matthew Martin <phy1729@gmail.com>
* 45831: Completion/Unix/Command/_vi: Add _vi completer.
2020-05-16 Daniel Shahaf <d.s@daniel.shahaf.name>
* users/24843: Doc/Zsh/compsys.yo: zshcompsys(1): Point to the
'format' style from the 'tag-order' style.
2020-05-12 Mikael Magnusson <mikachu@gmail.com>
* 45796: Src/subst.c, Test/D04parameter.ztst: Support
${name:offset:length} with an empty offset
2020-05-09: Eitan Adler <lists@eitanadler.com>
* noraj: gitlab !13: Completion/Unix/Type/_tar_archive: libarchive and
GNU tar can uncompress zstandard (zstd) based files
2020-05-07: Eitan Adler <lists@eitanadler.com>
* unposted: Completion/Unix/Type/_tar_archive: libarchive based
tar can uncompress zip files
2020-05-07 Daniel Shahaf <d.s@daniel.shahaf.name>
* unposted: Completion/Debian/Command/_dscverify,
Completion/Unix/Command/_pandoc: Use alternation patterns rather
than brace expansion
2020-05-05 Daniel Shahaf <d.s@daniel.shahaf.name>
* 45764: Test/D07multibyte.ztst: Add a regression test for 45772.
Test by Roman
2020-05-05 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 45772: Src/params.c: Upon restoring locale variables, restore
the corresponding system settings.
2020-05-23 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>
* unposted: Src/Builtins/rlimits.c: add a comment about how to
add a new resource.
* 45614: Completion/Redhat/Command/_dnf: add support for several
subcommands and options.
2020-05-03 Daniel Shahaf <d.s@daniel.shahaf.name>
* 45731: Completion/Debian/Command/_debsnap: New completion
function.
* 45730: Completion/Base/Utility/_arguments, Doc/Zsh/compsys.yo,
Src/Zle/computil.c, Src/utils.c, Test/Y03arguments.ztst:
_arguments: Add the -0 flag, which makes $opt_args be populated
sanely.
* 45729: Src/Modules/curses.c, Src/Zle/compcore.c,
Src/Zle/computil.c, Src/builtin.c, Src/linklist.c: internal:
Add a second parameter to zlinklist2array(), analogously to
hlinklist2array().
2020-05-02 Daniel Shahaf <d.s@daniel.shahaf.name>
* unposted: Util/zyodl.vim: Use 'conceal' for some macros that
expand to a single character.
* 45737 (+ docs, and update the test from 45722):
Doc/Zsh/mod_zutil.yo, README, Src/Modules/zutil.c,
Test/V05styles.ztst: zstyle: When determining the weight
(specificity) of a pattern, consider the number of components
before anything else, as documented.
* unposted: Test/V05styles.ztst: Revert unintentional move
from 45722.
* 45739: Doc/Zsh/compsys.yo, Doc/Zsh/zftpsys.yo: docs:
Clarifications about zstyle patterns.
* 45722: Doc/Zsh/mod_zutil.yo, V05styles.ztst: docs: Change
zstyle example to a non-hierarchical one
* 45752/0002: Completion/Unix/Command/_gcc: Complete --output
like -o.
* 45752/0001: Completion/Unix/Command/_gcc: Add .cpp and .hpp
to the ignored extensions list.
2020-04-27 Benjamin Esham <benjamin@esham.io>
* github #56: Doc/Zsh/mod_zutil.yo: typo: Add a single quote
that had been missing
2020-04-21 Daniel Shahaf <d.s@daniel.shahaf.name>
* unposted: README: Give the 'zsystem flock' limit in
pretty-printed form as well.
2020-04-21 dana <dana@dana.is>
* github #54: davey hathorn: Completion/Unix/Command/_dig:
Fix dig completion error
2020-04-20 dana <dana@dana.is>
* unposted: NEWS, README: Document zsh/system changes from
workers/45708
* unposted: Doc/Zsh/mod_system.yo: Adjust documentation from
workers/45708
* Cedric Ware: 45708: Doc/Zsh/mod_system.yo,
Src/Modules/system.c, Src/compat.c, Src/utils.c,
Test/V14system.ztst: Enable sub-second timeout in zsystem flock
* 45702: Doc/Zsh/compsys.yo: Improve documentation of
{insert,separate}-sections
2020-04-15 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 45684: Doc/Zsh/expn.yo: - glob qualifier behaviour in error
cases.
2020-04-12 dg1727 <dg1727@protonmail.com>
* 45661: Doc/Zsh/params.yo: docs: Clarify the effect of
KSH_ARRAYS on the (I) subscript.
2020-04-09 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 45660: Src/builtin,c, Src/init.c: Delay initial setting of
keympa options until module system is active.
2020-04-05 dana <dana@dana.is>
* 45655: Completion/Darwin/Type/_retrieve_mac_apps: Update
search paths and Spotlight index check for recent macOS
2020-04-05 Daniel Shahaf <d.s@daniel.shahaf.name>
* 45656: Etc/BUGS: Document the -o emacs segfault bug.
2020-04-02 Mikael Magnusson <mikachu@gmail.com>
* 45142: Doc/Zsh/grammar.yo, Doc/Zsh/options.yo, Src/lex.c,
Src/options.c, Src/parse.c, Src/zsh.h, Test/E01options.ztst:
Add SHORT_REPEAT option
2020-04-02 Daniel Shahaf <d.s@daniel.shahaf.name>
* unposted: Test/D02glob.ztst: Make test platform-independent.
2020-04-01 dana <dana@dana.is>
* 45542: Test/P01privileged.ztst: Use test-directory owner for
auto-determined EUID/EGID
* unposted: Test/D02glob.ztst: Fix platform-dependent test
failure introduced by workers/45583
2020-03-29 Daniel Shahaf <d.s@daniel.shahaf.name>
* 45649: Completion/Unix/Command/_unison: completion: Simplify
Unison completion. No functional change.
2020-03-29 Henri Menke <henri@icp.uni-stuttgart.de>
* 45646: Completion/Unix/Command/_unison: completion: Unison:
Honour the $UNISON variable
2020-03-28 Gastón Haro <gaston.haro@fing.edu.uy>
* github #46: Completion/Unix/Command/_git: _git-restore:
Complete arguments to the --source option after a '=' sign
2020-03-28 Gastón Haro <harogaston@users.noreply.github.com>
* github #46: Completion/Unix/Command/_git: Better restrict
git-restore(1) file completions
2020-03-28 Daniel Shahaf <d.s@daniel.shahaf.name>
* 45644: Functions/VCS_Info/Backends/VCS_INFO_get_data_git:
vcs_info git: Fix current patch's name in several cases.
* unposted: Test/V07pcre.ztst: Fix syntax error introduced
in 45591.
* 45640: Test/B13whence.ztst: Fix new test when ${PWD}'s value
contains symlinks.
2020-03-26 Daniel Shahaf <d.s@daniel.shahaf.name>
* 45627: Functions/VCS_Info/Backends/VCS_INFO_get_data_git:
vcs_info git: Under git-am(1) conflicts, pass to the
gen-applied-string hook information on already-applied patches.
* 45625: Functions/VCS_Info/Backends/VCS_INFO_get_data_svn:
vcs_info svn: Detect the "working copy format is too new" error.
* 45626: Functions/VCS_Info/Backends/VCS_INFO_get_data_bzr,
Functions/VCS_Info/Backends/VCS_INFO_get_data_p4,
Functions/VCS_Info/Backends/VCS_INFO_get_data_svk,
Functions/VCS_Info/Backends/VCS_INFO_get_data_svn,
Functions/VCS_Info/VCS_INFO_set-branch-format,
Functions/VCS_Info/vcs_info: vcs_info: Deduplicate calling the
set-branch-format hook.
* 45624: Functions/VCS_Info/Backends/VCS_INFO_get_data_fossil,
Functions/VCS_Info/Backends/VCS_INFO_get_data_p4,
Functions/VCS_Info/VCS_INFO_bydir_detect: vcs_info: Set $rrn
in all backends.
* 45623: Completion/Unix/Command/_quilt: Add subcommand
descriptions
* 45622: Completion/Unix/Command/_quilt: Categorize subcommands
* 45584, 45620: Test/B12limit.ztst: zsh/rlimits: Skip the tests
for this module when it wasn't compiled in.
* 45591 (Cf. 45587, 45620): Test/V01zmodload.ztst,
Test/V07pcre.ztst: In the test suite, centralize testing that
compiled modules can be loaded successfully.
2020-03-26 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 45616: Src/loop.c, Test/A01grammar.ztst: Remove tokens
from count to repeat keyword.
2020-03-25 Daniel Shahaf <d.s@daniel.shahaf.name>
* 45583/0008: Etc/BUGS, Src/utils.c, Test/B13whence.ztst:
Extend tests to prove that what remains of xsymlinks() handles
symlink loops gracefully.
* 45583/0007: Src/utils.c: Remove code that is now unreachable.
* 45583/0006: Src/utils.c: Don't use xsymlinks() in 'whence -s'.
* 45583/0005: Test/B13whence.ztst: Add a test for bin_whence's
symlinks resolution.
* 45583/0004: Etc/BUGS, Src/utils.c, Test/D02glob.ztst: Fix
segfault on resolving symlink loops
* 45583/0003: Src/hist.c, Src/subst.c: chrealpath: Let caller
decide how the return value should be allocated.
* 45583/0002: Src/hist.c, Src/subst.c: chrealpath: Make symlink
resolution optional.
* 45583/0001: Test/D02glob.ztst: Add tests for the segfault on
resolving a symlink loop bug (workers/45282).
* 45590/0002 (in part): Test/B12limit.ztst: zsh/rlimits: Test
that ulimit letters are unique.
2020-03-25 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>
* 45601: Test/E02xtrace.ztst: fix one more return status
2020-03-22 Rin Okuyama <rokuyama.rk@gmail.com>
* github #51: aczsh.m4, configure.ac: Fix configure for cross
build.
2020-03-22 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 45601: Test/E02xtrace.ztst: Fix status in new functions -T
test.
* 45563: Src/utils.c: %z supplies zlong for errors and warnings.
2020-03-22 Daniel Shahaf <d.s@daniel.shahaf.name>
* 45583/0009: README, Src/parse.c, Test/E02xtrace.ztst: Add
end-of-options guard support to 'function -T'.
* 45583/0008: Doc/Zsh/grammar.yo, README, Src/exec.c,
Src/parse.c, Test/E02xtrace.ztst: Add the 'function -T' syntax.
* 45583/0007: Config/version.mk, Src/exec.c, Src/parse.c,
Src/text.c: WC_FUNCDEF: Add a placeholder element.
* 45583/0006: Src/parse.c: internal: Add some comments for
orientation. No functional change.
* 45583/0005: Src/parse.c: internal: Document the WC_FUNCDEF
data layout for anonymous functions with arguments (follow-up
to 29492)
* 45583/0004: Src/parse.c, Src/zsh.h: internal: Add some comments
around wordcodes. No functional change.
* 45583/0003: Src/parse.c, Src/zsh.h: internal: Add some comments
around Eccstr. No functional change.
* 45583/0002: Src/parse.c: internal: Reduce some variables'
visibility. No functional change.
* 45583/0001: Src/exec.c: internal: Remove a redundant
assignment.
2020-03-20 Daniel Shahaf <d.s@daniel.shahaf.name>
* unposted: Src/Builtins/rlimits.c: Deconfuse $EDITOR's balanced
braces mode. No functional change.
* unposted: Doc/Zsh/expn.yo: ${(Z)}: Convert documentation to
a description block.
* unposted: Util/ztst-syntax.vim: internal: ztst.vim: Make
sure syntax elements are only hidden if they're followed by
something visible
2020-03-18 Daniel Shahaf <d.s@daniel.shahaf.name>
* unposted: .editorconfig: Specify tabs for Makefiles.
2020-03-17 Daniel Shahaf <danielsh@apache.org>
* 45572: Completion/Linux/Command/_sshfs: Complete some more
options
2020-03-17 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>
* 45536: Src/utils.c: fix handling of 8bit character in
is_wcs_nicechar() and wcs_nicechar_sel() under C-locale.
2020-03-15 Daniel Shahaf <danielsh@apache.org>
* 45541: Functions/VCS_Info/test-repo-git-rebase-apply: internal:
vcs_info git: Add a test case repository for rebase-apply
situations
* 45539: Functions/VCS_Info/Backends/VCS_INFO_get_data_git:
vcs_info git: In non-interactive rebases, obtain applied
patches' names.
* 45540: Doc/Zsh/contrib.yo,
Functions/VCS_Info/Backends/VCS_INFO_get_data_git: vcs_info git:
In non-interactive rebases, compute patch names for unapplied
patches.
* 45543: Functions/VCS_Info/VCS_INFO_quilt, README: vcs_info
quilt: Allow quiltcommand to be a function.
* 45547: Functions/VCS_Info/Backends/VCS_INFO_get_data_git:
vcs_info git: In interactive rebases, process
gen-unapplied-string arguments like gen-applied-string arguments
are processed.
* 45546: Functions/VCS_Info/Backends/VCS_INFO_get_data_git:
vcs_info git: In interactive rebases, properly support the full
form of the "exec" verb.
* 45545: Functions/VCS_Info/Backends/VCS_INFO_get_data_git:
vcs_info git: In interactive rebases, ignore comment lines.
2020-03-13 dana <dana@dana.is>
* unposted: Completion/Unix/Command/_git: Fix copy/paste error
in earlier commit that broke `git stash drop`
* 45535: Completion/Unix/Command/_lz4: Order compression levels
numerically
* 45534: Completion/Darwin/Command/_hdiutil: Update image-file
extensions, image/disk formats, &c.
* 45531: Completion/Unix/Command/_sh: Complete options more
accurately
* 45537 (tweaked per 45550, needs 45536): Test/E02xtrace.ztst:
Fix inconsistent function-name encoding in preserves-xtrace test
2020-03-12 Daniel Shahaf <danielsh@apache.org>
* unposted: .editorconfig: Specify spaces rather than tabs for
zsh scripts.
2020-03-11 dana <dana@dana.is>
* 45470: Test/C02cond.ztst: Simplify '-N cond' test
* 45424 (tweaked): Completion/Solaris/Command/_pfexec,
Completion/Unix/Command/_doas, Completion/Unix/Command/_su,
Completion/Unix/Command/_sudo, Completion/Zsh/Type/_command_names:
Add **/sbin to PATH when completing commands like sudo
2020-03-10 Romain Porte <debian@microjoe.org>
* 45524: Completion/Debian/Command/_dscverify: Add completion
for dscverify(1) from Debian's devscripts.
2020-03-09 Daniel Shahaf <danielsh@apache.org>
* 45518 + unposted tweak (change single quotes to double quotes):
Test/V01zmodload.ztst: Fix V01zmotload.ztst test failures when
zsh/parameter is dynamically linked (which is the default).