forked from zsh-users/zsh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
19200 lines (12291 loc) · 627 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
2022-12-02 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>
* 51080: Src/glob.c: allow multibyte characters in glob qualifier
(u:uname:)
* 51079: Src/params.c, Test/D06subscript.ztst: metafy sep in the
array subscript flag (s:sep:) so that sep can contain \0 etc.
2022-11-23 Daniel Shahaf <d.s@daniel.shahaf.name>
* unposted (cf. 51016): Test/C01arith.ztst: Add a test case
for underscore-followed-by-digits in math context.
2022-11-17 Oliver Kiddle <opk@zsh.org>
* unposted (c.f. Norikatsu Shigemura: github #96):
Completion/Unix/Command/_cut: add missing local declaration
* github #87: Matt Koscica: Completion/Unix/Command/_tmux:
update options tmux 3.4
* github #95: Wu Zhenyu: Completion/Unix/Command/_mutt:
Add completions for neomutt
* unposted (c.f. Denis Bitouzé: users/28405):
Completion/Unix/Command/_tex: handle also lualatex
* 50934: Doc/Zsh/zle.yo, Src/Zle/zle.h, Src/Zle/zle_utils.c,
Src/Zle/zle_vi.c: use OSC 52 escape sequence when copying to
"* or "+ vi buffers
2022-11-09 Bart Schaefer <schaefer@zsh.org>
* 50929: Src/exec.c: fix handling of ERR_RETURN bent by 50928.
* 50928: News, Src/exec.c, Test/C03traps.ztst: fix tests for 50897,
mention behavior change in NEWS
* 50922: Src/exec.c, Src/jobs.c: fix additional cases of signals
for current shell jobs on the right of a pipeline. Backs out
part of 50874.
2022-11-08 Bart Schaefer <schaefer@zsh.org>
* 50897: Src/exec.c, Src/loop.c: nonzero status of complex
commands should trigger ERR_EXIT
2022-11-08 Peter Stephenson <p.stephenson@samsung.com>
* users/28338: Src/lex.c, Test/D08cmdsubst.ztst: edge case of an
edge case in command expansion of alias.
2022-11-06 Bart Schaefer <schaefer@zsh.org>
* 50874: Src/jobs.c: fix handling of tty signals for jobs in
the current shell when waiting for the right side of a pipeline.
2022-11-02 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>
* 50851: Doc/Zsh/options.yo, Src/exec.c, Src/options.c: restore
state (such as typtab) when returning from a function with
localoptions (but do not take care of EMACS/VI options).
2022-10-31 Bart Schaefer <schaefer@zsh.org>
* 50855: Doc/Zsh/builtins.yo, Doc/Zsh/params.yo: Clarify how
commands are hashed, and searched-for by "whence".
2022-10-31 Peter Grayson <pete@jpgrayson.net>
* 50844: Completion/Unix/Command/_stgit: Remove _stgit completion
script
2022-10-25 Axel Beckert <abe@deuxchevaux.org.org>
* 50840: Doc/Zsh/grammar.yo: Correct NO_MATCH to NOMATCH.
2022-10-23 Bart Schaefer <schaefer@zsh.org>
* users/28243: Doc/Zsh/builtins.yo: update "typeset +" doc
2022-10-22 Bart Schaefer <schaefer@zsh.org>
* 50714: Completion/Unix/Command/_git (_git-diff): also complete
in the 2nd argument position anything that could be in the 1st.
2022-10-17 Peter Stephenson <p.stephenson@samsung.com>
* 50786: Functions/Misc/add-zle-hook-widget: make match
etc. local when used in styles.
2022-10-17 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>
* Wesley Schwengle: 50736: Src/Zle/compmatch.c: silence
use-after-free waring (gcc-12.2)
2022-09-29 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>
* 50671: Util/ztst-syntax.vim: enable spell check in *.ztst
2022-09-28 Eric Cook <llua@gmx.com>
* Bart Schaefer: 50399: Completion/Base/Widget/_complete_debug
Properly local scope PS4 change
* 50695: Completion/Unix/Command/_mysql_utils add --protocol
option
2022-09-27 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>
* 50668: Src/utils.c, Test/D09brace.ztst: treat 8bit characters
in charcter range correctly when multibyte is unset
2022-09-26 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>
* 50662: Test/ztst.zsh: unset LC_* for all the tests
* 50658 + test: Src/Modules/pcre.c, Test/V07pcre.ztst: Enable to
switch between C/UTF-8 locales in PCRE
2022-09-25 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 50648: Functions/Misc/zcalc: Julian Prein: Use ZCALC_HISTFILE
where defined for zcalc history.
2022-09-21 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>
* Nicholas Vinson: 50641: aczsh.m4, configure.ac: use 'int main()'
in test C-codes in configure
2022-09-15 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>
* 50629: Test/D07multibyte.ztst, Test/E01options.ztst,
Test/V07pcre.ztst, Test/X02zlevi.ztst, Test/X03zlebindkey.ztst,
Test/Y01completion.ztst, Test/ztst.zsh: do not use egrep in tests
2022-08-28 Daniel Shahaf <d.s@daniel.shahaf.name>
* unposted: Completion/Unix/Command/_imagemagick: Add *.svg
and *.webp files.
2022-08-05 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>
* Felipe Contreras: 50435+50436 (+50444):
Completion/Unix/Command/_make: do not actually build anything.
Also include some performance improvements.
2022-07-24 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>
* 50421: Completion/Zsh/Context/_redirect: add missing context
as the 1st argument to _dispatch
* 50418: Src/zsh_system.h, configure.ac: use setenv(3)/getenv(3)
on newer macOS
2022-07-16 Bart Schaefer <schaefer@Macadamia>
* users/27852: Completion/Unix/Command/_python: Make a local copy
of $_compskip to avoid propagating outward any changes by _normal
2022-06-21 Bart Schaefer <schaefer@zsh.org>
* 50379 (tweaked per 50380): Src/jobs.c: fix off-by-one
side-effect of workers/49906 that broke $(jobs -l)
* 50368: Src/Modules/db_gdbm.c: adjust bitflags so local copies of
variables cannot mess with database file contents
2022-06-16 Peter Stephenson <p.stephenson@samsung.com>
* 50372: Etc/FAQ.yo: remove redundant references from days of
Usenet posting.
2022-06-14 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>
* 50365: Etc/FAQ.yo: fix indent in FAQ (text version)
2022-06-11 Bart Schaefer <schaefer@zsh.org>
* 50355: Doc/Zsh/mod_system.yo, Src/Modules/system.c: make return
status values of sysopen consistent with other sys* functions,
make ERRNO values consistent for all, and update documentation
2022-06-11 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>
* 50356: Etc/FAQ.yo: work around a yodl bug (mishandling of \'e)
2022-06-09 Bart Schaefer <schaefer@zsh.org>
* 50363: Src/Modules/param_private.c: avoid use of heap memory
that depends on parameter scoping
2022-06-09 Matthew Martin <phy1729@gmail.com>
* 50359: Src/builtin.c: fix bad sticky-emulation in "functions -c"
2022-06-09 Bart Schaefer <schaefer@zsh.org>
* 50351: Src/builtin.c: "functions -c" can set signal traps
2022-06-09 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>
* 50342: Src/jobs.c, Test/A05execution.ztst: fix test added by
50306
2022-06-08 Bart Schaefer <schaefer@zsh.org>
* 50341: Src/parse.c: disallow here-doc markers containing newline
* 50335: Functions/Misc/zargs: simplify "wait" usage, fix signal
handling for functions used as the command.
2022-06-07 Peter Stephenson <p.stephenson@samsung.com>
* 50339: Doc/Zsh/options.yo, Src/text.c, Test/C04funcdef.ztst:
Make multiple function output safer with NO_MULTI_FUNC_DEF and
document exceptions to errors raised by MULTI_FUNC_DEF.
2022-06-04 Bart Schaefer <schaefer@zsh.org>
* 50323: Completion/Base/Utility/_shadow (new file),
Completion/Base/Widget/_complete_help, Functions/Zle/keeper:
create helper for shadowing builtins or existing functions and
use it when redefining compadd et al.
2022-06-03 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>
* 50306: Src/jobs.c, Src/signals.c, Test/A05execution.ztst: fix
wait builtin for child that has been stopped and continued.
2022-06-02 Bart Schaefer <schaefer@zsh.org>
* 50325: Src/Zle/compmatch.c, Src/Zle/computil.c: revert 38150 and
fix in calling function cfp_matcher_range() instead
2022-05-30 Bart Schaefer <schaefer@zsh.org>
* Marlon Richert: 50307 (cf. PWS 50205):
Completion/Zsh/Type/_suffix_alias_files: suffix aliases should not
collide with directory names when completing
2022-05-26 Peter Stephenson <p.stephenson@samsung.com>
* 50287: configure.ac: Turn on use of getcwd by default. Leave
the ability to turn it off per OS configuration.
* 50286: Functions/Misc/zed: avoid error if nounset is in effect.
2022-05-25 Norbert Lange <nolange79@gmail.com>
* github #94: Completion/Linux/Command/_modutils: Support .zst
kernel modules with modutils.
* github #93: Completion/Linux/Command/_btrfs,
Completion/Linux/Command/_fusermount,
Completion/Unix/Type/_umountable: Replace /etc/mtab with
/proc/self/mounts for Linux.
2022-05-22 Bart Schaefer <schaefer@zsh.org>
* 50278: Completion/Unix/Command/_man: use `man -w` in preference
to `manpath` for portability; fix caching and precedence of -M
2022-05-20 Arvid Norlander <VorpalBlade@users.noreply.github.com>
* github #91: Completion/Unix/Command/_find: _find
(gnu/freebsd/darwin): Add some flags and syntaxes
2022-05-14 Bart Schaefer <schaefer@zsh.org>
* 50229: NEWS: Typo
* Jan Brieg: 50212 (and discussion): Functions/Misc/colors: Add
"bright" color variants
2022-05-15 Axel Beckert <abe@deuxchevaux.org>
* 50220: Doc/Zsh/{builtins,options}.yo: Fix typos found by
Debian's Lintian tool.
2022-05-14 dana <dana@dana.is>
* unposted: Config/version.mk: Post-release version bump
* unposted: Config/version.mk: Update for 5.9
2022-05-11 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>
* 50192: Src/openssh_bsd_setres_id.c: use set{u,g}id() instead of
setre{u,g}id() for dropping privilege on NetBSD
2022-05-08 dana <dana@dana.is>
* 50176 (with xpufx, tweaked): Completion/Linux/Command/_htop:
Improve htop completion
2022-05-07 Bart Schaefer <schaefer@zsh.org>
* 50184: Completion/Base/Utility/_values: fix inclusion of -S
separator in -r options passed to compadd through _describe
* Marlon Richert: 49954: Completion/Unix/Command/_gradle: improve
handling of task names, subprojects, completion tags, and caching
* unposted: Doc/Zsh/builtins.yo: cross-reference "typeset -f" for
"functions -[Tt]"
2022-05-02 Bart Schaefer <schaefer@zsh.org>
* unposted (cf. Jun-ichi 50164): Test/E01options.ztst: add sleep
after nullexec test to allow background process to flush writes
(observed only on MacOS Monterey 12).
* 50162: Test/D07multibyte.ztst: Tweak 50150 test to check proper
metafication of array elements and to ignore collation variances
2022-05-01 Bart Schaefer <schaefer@zsh.org>
* 50160: Test/D03procsubst.ztst, Test/E01options.ztst: Regression
tests for 50126, 50136, and 50149
* 50159: Test/V14system.ztst: Tests for sysread
* 50157 (Daniel Shahaf): Test/D07multibyte.ztst: Test for 50150
2022-05-01 dana <dana@dana.is>
* unposted: Config/version.mk: Update for 5.8.1.3-test (5.9)
* unposted: Etc/creating-a-release.txt: Mention #zsh topic
2022-04-30 Bart Schaefer <schaefer@zsh.org>
* unposted: Etc/BUGS: remove debian #924736, fixed since 5.8 by
workers/44142; correct misguided edit from earlier commit
* unposted: Doc/Zsh/expn.yo, NEWS: Details about ${(*)...}
* 50150: Src/Modules/stat.c: Filenames need unmetafy for printing
* 50149: Etc/BUGS, Src/builtin.c, Src/jobs.c: Remove all =(...)
files at shell exit
2022-04-29 Bart Schaefer <schaefer@zsh.org>
* 50136: Etc/BUGS, Src/exec.c: Fix =(nosuchcommand) race/deadlock
first reported in workers/42609
* 50134: Src/jobs.c: Tweak process group handling (workers/43409)
to avoid creating "unkillable" pipelines that ignore signals
* unposted: Etc/BUGS: Details about STTY; consistency nit
2022-04-28 Bart Schaefer <schaefer@zsh.org>
* 50138: Doc/Zsh/params.yo: Note ERRNO must be set before use.
* 50133 (Bart, PWS, Jun-ichi): Src/input.c, configure.ac: when
lseek(2) is available, use it to check for and rewind read-ahead
for more efficient line-buffered input.
* 50126: Etc/BUGS, Src/exec.c: Fix multios in current-shell "exec"
* 50101: Src/Modules/system.c: sysread -o with param matches doc
2022-04-26 dana <dana@dana.is>
* unposted: Completion/Unix/Command/_getopt: Fix util-linux
variant detection
* unposted: NEWS: Adjust dedication wording
2022-04-26 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>
* 50089: Test/X03zlebindkey.ztst: unset LC_* for multibyte tests
2022-04-12 Peter Stephenson <p.stephenson@samsung.com>
* 50049: Src/exec.c, Src/prompt.c: care with signed character
indices on the few remaining systems such as Cygwin that aren't
otherwise protected.
2022-04-20 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>
* 50081: Src/pattern.c, Src/params.c: reset global mbstate_t
variables when LC_CTYPE changes
* 50080: Src/hist.c: add missing STOUC() in casemodify()
2022-04-19 Bart Schaefer <schaefer@zsh.org>
* unposted (cf. users/27656 (Tomasz Pala), users/27660):
Completion/Unix/Type/_path_files: fix $SUFFIX when GLOB_COMPLETE
2022-04-14 Bart Schaefer <schaefer@zsh.org>
* 50069: Test/C03traps.ztst: fix test description
* 50068: Etc/BUGS, Src/builtin.c, Test/C03traps.ztst: 'exit' in
trap causes calling function to return (fixes workers/44007)
2022-04-14 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>
* 50052: Test/V14system.ztst: do nothing when skipping the test
* 50046: Test/ztst.zsh: export LANG to child zsh
2022-04-12 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>
* 50013: Test/P01privileged.ztst, Test/ztst.zsh: skip %test if
a chunk in %prep returns nonzero
* 49996 (Peter) + 50012: Test/README, Test/ztst.zsh: add
ZTST_continue to continue tests after a failure
* 50017: Completion/Unix/Type/_time_zone: allow lowercase to
match with uppercase
2022-04-11 Bart Schaefer <schaefer@zsh.org>
* 50043: Test/D02glob.ztst, Test/E03posix.ztst: for root user,
skip glob tests that rely on limited privilege and fix EUID test
2022-04-11 Mikael Magnusson <mikachu@gmail.com>
* 50042: Src/Zle/compcore.c: Another fix for 49915
2022-04-10 Daniel Shahaf <d.s@daniel.shahaf.name>
* unposted: NEWS: Improve flow between the paragraph and
its links.
2022-04-09 dana <dana@dana.is>
* unposted: Config/version.mk, Etc/FAQ.yo: Update for
5.8.1.2-test (5.9)
* 49958: NEWS: Dedicate zsh 5.9 to Sven Guckes
* 49958, (tweaked per 50019): NEWS, README: Add missing
changes, update for zsh 5.9
2022-04-06 Matthew Martin <phy1729@gmail.com>
* 49960: Doc/Zsh/compsys.yo: Sort lists in zshcompsys.
2022-04-05 Bart Schaefer <schaefer@toltec-ubuntu>
* 49994: Src/glob.c: Single-byte equivalence of users/22601 and
workers/40891 for matching against zero-length strings
2022-04-05 Peter Stephenson <p.stephenson@samsung.com>
* 49989: Src/Zle/compresult.c, Src/utils.c, Src/zsh.h: Align
"nice" printing for single byte compilation with multibyte.
2022-04-04 Bart Schaefer <schaefer@zsh.org>
* 49992: Src/utils.c: further unify single- and multi-byte
implementations of nicechar() to fix ${(V)...} output format
* 49991: Src/glob.c, Src/utils.c: single-byte brace expansion
handles $'\0' and control character output aligns with multibyte
* 49990: Src/hist.c: in single-byte, like multibyte, casemodify()
avoids metafying characters that it otherwise did not touch
2022-04-03 Bart Schaefer <schaefer@zsh.org>
* 49955 (with thanks to Madhu <enometh@meer.net>): Src/glob.c:
fix bad free in incremental-pattern-search matching (observed
only when compiled without MULTIBYTE support)
2022-04-03 Mikael Magnusson <mikachu@gmail.com>
* 49959: Completion/Zsh/Context/_brace_parameter:
_brace_parameter: add (-)
* 49957: Src/Zle/compcore.c: Brown paper bag for 49915
* 49961: Completion/Unix/Command/_adb: _adb: handle exec-out
like shell
* 49962: Completion/Unix/Command/_adb: _adb: Add dumpsys and
cmd completion
* 49963: Completion/Unix/Command/_adb: _adb: Fix device serial
completion for hostname:port syntax
* 49964: Completion/Unix/Command/_adb: _adb: Complete services
for start/stop
* 49965: Completion/Unix/Command/_adb: _adb: use $CURRENT instead
of $#words
* 49966: Completion/Unix/Command/_adb: _adb: Parse device spec
correctly
* 49967: Completion/Unix/Command/_adb: _adb: Handle dumpsys
SurfaceFlinger arguments
* 49968: Completion/Unix/Command/_adb: _adb: also replace model
names, since device names aren't sent on wifi listing
2022-04-02 dana <dana@dana.is>
* unposted (see 48073): Completion/Zsh/Command/_fc: Complete
new -s option
* unposted (see security/107): Etc/creating-a-release.txt:
Normalise white space, clarify some steps
2022-04-01 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>
* 49943: Completion/Unix/Type/_time_zone: offer only filenames
starting with an uppercase letter
2022-03-31 Matthew Martin <phy1729@gmail.com>
* unposted: Completion/BSD/Command/_rcctl: Fix typo.
* github #88: elig0n: Doc/Zsh/func.yo: Fix typo.
* 49933: Doc/Zsh/mod_system.yo, Src/Modules/system.c: Add
nonblock to sysopen.
* 49932: Completion/Zsh/Context/_brace_parameter: Update
_brace_parameter # description.
* 49931: Completion/BSD/Command/_bsd_pkg: Update _bsd_pkg.
* 49907: Etc/completion-style-guide: Mention _numbers in
completion guide.
2022-03-31 Peter Stephenson <p.stephenson@samsung.com>
* 27639: Doc/Zsh/expn.yo: clarify that ${(#)...} deals with
character codes.
2022-03-30 Peter Stephenson <p.stephenson@samsung.com>
* 49906 (Bart), 49911: Doc/Zsh/builtins.yo,
Doc/Zsh/mod_parameter.yo, Src/exec.c, Src/jobs.c,
Test/W03jobparameters.ztst: Fix querying jobs in subshell.
Don't query invalid job at end, if background job started in
subshell query jobs in subshell instead of main shell.
2022-03-30 Mikael Magnusson <mikachu@gmail.com>
* 49893: Src/Zle/comp.h, Src/Zle/compcore.c: Fix comments for
UNIQCON/ALL
* 49915: Src/Zle/comp.h, Src/Zle/compcore.c: Efficient dedup
for unsorted completions
* 49870: Src/glob.c: Fix NULL reference in match code more
* 49813: Doc/Zsh/redirect.yo, Src/exec.c: <<<: Document newline
behavior and fix optimization
* 49820: Src/Zle/compresult.c: Fix a crash when completing with
combination of -Q and braces
2022-03-30 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>
* 49910: Test/D07multibyte.ztst, Test/E03posix.ztst: move
multibyte-related incompatibility with POSIX from E03 to D07
* 49908: Test/ztst.zsh: reset LC_CTYPE to C during tests.
2022-03-29 Bart Schaefer <schaefer@zsh.org>
* 49918: NEWS, README: Update for 49917 and 49911.
* 49917: Completion/compinit, Doc/Zsh/compsys.yo: change sense
of "Ignore insecure ..." answer to ignore the files rather than
ignore the problem. Use "autoload -r" for autoload paths.
2022-03-29 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>
* 49853 + 49882/49883: Src/subst.c, Test/D04parameter.ztst: make
"${array[*]:offset:length}" compatible with ksh/bash
2022-03-28 Bart Schaefer <schaefer@zsh.org>
* 49897: Functions/Misc/zargs: Eliminate reliance on $jobstates
parameter, fix -P exit status check.
2022-03-28 Peter Stephenson <p.stephenson@samsung.com>
* 49890: Src/Zle/zle_utils.c: best not to look at unallocated
memory in saved command line.
2022-03-24 Peter Stephenson <p.stephenson@samsung.com>
* 49875: Completion/Unix/Command/_texinfo: info -f completes
both info pages by search and (if there's a slash present) local
files. Not all versions of info seem to need the slash, however.
* 49845: Doc/Zsh/options.yo: clarify that options can be local
in function scope.
2022-03-18 Matthew Martin <phy1729@gmail.com>
* 49852: Completion/BSD/Command/_pfctl,
Completion/BSD/Type/_routing_domains,
Completion/BSD/Type/_routing_tables,
Completion/Unix/Command/_arp, Completion/Unix/Command/_netstat,
Completion/Unix/Command/_pgrep, Completion/Unix/Command/_ping,
Completion/Unix/Command/_route, Completion/Unix/Command/_top:
Add _routing_domains and _routing_tables types.
* 49851: Completion/BSD/Type/_login_classes: Complete
login.conf.d classes.
2022-03-13 Bart Schaefer <schaefer@zsh.org>
* 49844: Doc/Zsh/expn.yo, Doc/Zsh/zle.yo: Fix node reference
errors from 49446 and 49448.
2022-03-08 Mikael Magnusson <mikachu@gmail.com>
* 49773: Functions/Prompts/promptinit: promptinit: only exclude
current theme from preview if no arguments are given
2022-03-06 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>
* 49802 (+ 49804:Daniel): Test/W03jobparameters.ztst: pass
MODULE_PATH to the zsh started by zpty
2022-03-03 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 49792: Src/input.c, Test/A01grammar.ztst: Use line buffering
for non-interactive input.
* 49787: Test/W02jobs.ztst, Test/W03jobparameters.ztst: test for
jobs fix in 49783.
2022-03-01 Peter Stephenson <p.stephenson@samsung.com>
* 49783: Src/jobs.c, Src/Modules/parameter.c: Consistently use
old job table in parameter module.
* users/27536: Doc/Zsh/builtins.yo: Clarify interaction of
history matching and numeric indices.
2022-02-23 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>
* 49766: Completion/Unix/Command/_less: add quotes to -" and -#
* 49765: Completion/Unix/Command/_less: add option --color
as synonym for -D
2022-02-22 Daniel Shahaf <d.s@daniel.shahaf.name>
* unposted: Doc/Zsh/contrib.yo, Src/Modules/parameter.c,
Src/string.c, Src/zsh.h: Fix some typos and markup.
2022-02-22 Peter Stephenson <p.stephenson@samsung.com>
* 49672: Doc/Zsh/expn.yo: document "tied" output in parameter
(t) output.
2022-02-22 Mikael Magnusson <mikachu@gmail.com>
* 49769: Doc/Zsh/mod_stat.yo: Mention how to show nanosecond
precision
2022-02-20 Daniel Shahaf <d.s@daniel.shahaf.name>
* 49728: Functions/VCS_Info/Backends/VCS_INFO_get_data_hg:
vcs_info hg mq: Don't include applied patches in the unapplied
patches
* 49727 (+ comment): Doc/Zsh/contrib.yo,
Functions/VCS_Info/Backends/VCS_INFO_get_data_git,
Functions/VCS_Info/Backends/VCS_INFO_get_data_hg,
Functions/VCS_Info/VCS_INFO_quilt,
Functions/VCS_Info/VCS_INFO_set-patch-format: vcs_info
quilt: Pass the patches dir path to the gen-applied-string,
gen-unapplied-string, and set-patch-format hooks
* unposted: Functions/VCS_Info/Backends/VCS_INFO_get_data_hg:
vcs_info hg mg (with get-unapplied set): Stop leaking a variable
to global scope
2022-02-16 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>
* 49757 (sourceforge #1): samcarter: Completion/Unix/Command/_tex:
offer *.dtx as TeX input files
2022-02-15 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>
* 49756 + 49758 (Daniel): Etc/FAQ.yo, Util/zyodl.vim: replace
yodl macro LPAR() in FAQ.yo by SUBST(_LPAR_)
2022-02-13 Axel Beckert <abe@deuxchevaux.org>
* unposted: README: Fix underline length of "Incompatibilities
between 5.5.1 and 5.6.2" headline. (Cosmetic fix)
2022-02-12 dana <dana@dana.is>
* unposted: Config/version.mk: Post-release version bump
* unposted: Config/version.mk, Etc/FAQ.yo, README: Update
for 5.8.1
* Marc Cornellà: security/82 (tweaked):
Functions/VCS_Info/VCS_INFO_formats: Fix typo in
hook_com[base-name_orig] assignment
* CVE-2021-45444: NEWS, README: Document preceding two changes
* Marc Cornellà: security/89:
Etc/CVE-2021-45444-VCS_Info-workaround.patch: Add patch which
can optionally be used to work around recursive PROMPT_SUBST
issue in VCS_Info
* Oliver Kiddle: security/41: Src/prompt.c: Prevent recursive
PROMPT_SUBST
2022-02-04 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>
* 49730: Completion/Unix/Command/_csplit,
Completion/Unix/Command/_pr, Completion/Unix/Command/_ptx,
Completion/Unix/Command/_truncate: New completers
2022-02-02 Matthew Martin <phy1729@gmail.com>
* 49731: Completion/BSD/Command/_sysclean,
Completion/BSD/Command/_sysmerge,
Completion/BSD/Command/_syspatch,
Completion/BSD/Command/_sysupgrade: Add completers
2022-01-30 Mikael Magnusson <mikachu@gmail.com>
* 49694 + doc: Doc/Zsh/builtins.yo, Doc/Zsh/params.yo, Src/exec.c:
Allow using empty STTY= to freeze tty for a single command
2022-01-29 Daniel Shahaf <d.s@daniel.shahaf.name>
* unposted: Functions/VCS_Info/test-repo-git-rebase-apply,
Functions/VCS_Info/test-repo-git-rebase-merge: vcs_info git:
Teach the rebase-apply test case generator to also generate
rebase-merge test cases
* unposted: Functions/VCS_Info/Backends/VCS_INFO_get_data_git:
vcs_info git: Add a missing guard against redefining a function.
* unposted: Functions/VCS_Info/Backends/VCS_INFO_get_data_git:
vcs_info git: Deconfuse $EDITOR
* unposted: Functions/VCS_Info/VCS_INFO_patch2subject,
Functions/VCS_Info/VCS_INFO_set-branch-format,
Functions/VCS_Info/VCS_INFO_set-patch-format: vcs_info: Add
Vim modelines
* 49723: Functions/VCS_Info/VCS_INFO_quilt: vcs_info quilt:
Use quilt-patch-dir and ${QUILT_PATCHES} even when get-unapplied
hasn't been set
* 49722: Functions/VCS_Info/VCS_INFO_quilt: vcs_info quilt:
Refactor for readability. No functional change.
* 49715: Completion/Unix/Command/_subversion: add: Complete
target arguments to this subcommand
* 49714: Completion/Unix/Command/_subversion: resolve: Complete
conflicted files created by merges, too
* 49713: Completion/Unix/Command/_subversion: commit, diff,
revert: Update completions for svn 1.7 and newer
* 49712: Completion/Unix/Command/_subversion: svn rm: Complete
all svn-controlled files, not only missing/deleted files
* 49711: Completion/Unix/Command/_subversion: _svn_status:
Don't offer unversioned files
2022-01-27 Daniel Shahaf <d.s@daniel.shahaf.name>
* unposted: Doc/Zsh/contrib.yo: vcs_info quilt docs: Fix
misspelled style name
* unposted: Functions/VCS_Info/VCS_INFO_quilt: vcs_info quilt:
Remove a no-op variable assignment
2022-01-25 Daniel Shahaf <d.s@daniel.shahaf.name>
* 49709: Functions/VCS_Info/Backends/VCS_INFO_get_data_hg:
vcs_info hg: Keep $HGPLAIN set for hooks if it had been set
outside vcs_info
2022-01-23 Andreas Schneider <asn@cryptomilk.org>
* gitlab !17: Completion/Unix/Command/_quilt: Add missing
options for quilt setup command
2022-01-01 Bart Schaefer <schaefer@zsh.org>
* Matt Alexander: 49667: Functions/Misc/colors: include "gray"
2021-12-29 Oliver Kiddle <opk@zsh.org>
* Aaron Schrab: 49664: Completion/Unix/Command/_git:
Use associative array for third-party completion
* 49668: Completion/Unix/Command/_zfs,
Completion/Unix/Type/_zfs_dataset: update zfs completion
2021-12-24 Bart Schaefer <schaefer@zsh.org>
* m0viefreak: 38150: Src/Zle/compmatch.c: fix off-by-one error
in matcher spec parsing
2021-12-21 Peter Stephenson <p.stephenson@samsung.com>
* 49658: Src/glob.c: Remove erroneous use of NULL pointer for
replacement pattern match.
2021-12-21 Oliver Kiddle <opk@zsh.org>
* 49655 based on 34928 (Daniel Hahler):
Completion/Unix/Command/_pip: new pip completion
2021-12-16 Oliver Kiddle <opk@zsh.org>
* 49653: Src/Zle/computil.c: fix array indexing issue introduced
with 49518 due to using decimal rather than hex 20
* 49648 based on github #80 (Vincent Bernat):
Completion/Unix/Command/_find, Completion/Zsh/Type/_globquals:
invert before/since for date glob qualifiers completion
2021-12-14 Oliver Kiddle <opk@zsh.org>
* 49518: Src/Zle/computil.c, Etc/BUGS, Test/Y03arguments.ztst:
fix exclusions for mixed - and + stacked options
2021-12-13 Oliver Kiddle <opk@zsh.org>
* 49646: Doc/Zsh/mod_watch.yo, Src/Modules/watch.c, Src/prompt.c:
allow colors in WATCHFMT with %F/%K
* 49645: Completion/Unix/Type/_path_commands: when completing for
the path_dirs option, add a / suffix and follow symlinks
* 49643: Completion/Zsh/Type/_command_names: facilitate use
of the fake style by always calling _description with the
executables tag
* 49634, reported by Claes Nästén: configure.ac: revert 28989,
defining _POSIX_C_SOURCE caused issues on Solaris 10 but
doesn't seem to be needed for musl anymore
2021-12-07 Oliver Kiddle <opk@zsh.org>
* 49633: Completion/Unix/Command/_git: update options for git 2.34
2021-12-02 Oliver Kiddle <opk@zsh.org>
* 49630: Completion/bashcompinit: allow zsh to quote matches but
include a special case for space suffixes
* 49631: Completion/Unix/Command/_logger: new logger completion
* 49629: Completion/Linux/Command/_perf: new Linux perf completion
2021-12-01 Daniel Shahaf <d.s@daniel.shahaf.name>
* 49628: Test/D01prompt.ztst: Add an xfail test for RPS1/RPROMPT
equivalence.
* 49624: Test/E03posix.ztst: Expect the test 'All identifiers
are variable references in POSIX arithmetic' to pass, as it
has been passing since 49611.
* unposted: Doc/Zsh/zle.yo, Doc/ztexi.yo: Add whitespace and
comments. No functional change.
* 49621: Doc/Zsh/manual.yo, Doc/Zsh/zle.yo: Fix the info Doc
build, broken in 49448.
2021-11-30 Oliver Kiddle <opk@zsh.org>
* 49612: Src/module.c: avoid startup error with clashing non-local
module parameter name
* 49611 based on 49590 (Martijn Dekker): Src/math.c: disable Inf
and NaN in math expressions for sh emulation
2021-11-28 Oliver Kiddle <opk@zsh.org>
* 49606: Src/hashnameddir.c, Src/utils.c, configure.ac: remove old
NIS-specific code for retrieving user data
* 49602: Src/params.c: only set LOGCHECK from the watch module
* 49601: Src/hist.c, Test/W01history.ztst: don't create
ambiguous history file entries for lines ending with a backslash
2021-11-26 Paul Seyfert <Paul.Seyfert@sevensense.ch>
* github #83: Completion/Unix/Command/_git: _git-push,
_git-send-pack: Make --push-option repeatable.
2021-11-26 Daniel Shahaf <d.s@daniel.shahaf.name>
* 49448: Doc/Zsh/contrib.yo, Doc/Zsh/zle.yo: docs: Fix pointers
to the `Widgets', `User-defined Widgets', and `Standard Widgets'
sections.
* 49447: Doc/Zsh/compsys.yo: docs: _wanted: Clarify the example
and point to another one.
* 49446: Doc/Zsh/expn.yo: docs: Add texinode()s, so the next
commit can link directly to a subsection.
* 49445: Doc/Zsh/calsys.yo, Doc/Zsh/contrib.yo, Doc/Zsh/expn.yo,
Doc/Zsh/intro.yo, Doc/Zsh/jobs.yo, Doc/Zsh/mod_newuser.yo,
Doc/Zsh/options.yo, Doc/Zsh/params.yo, Doc/Zsh/roadmap.yo,
Doc/Zsh/zle.yo: docs: Clean up some subsection references.
* 49449: Completion/Unix/Command/_stat: _zstat: Don't offer -o
after -s, since -s is ignored when both -s and -o are specified.
* 47599 (tweaked): New test for '{foo,bar}' in command position
2021-11-24 Oliver Kiddle <opk@zsh.org>
* 49597: Completion/Base/Core/_description, Doc/Zsh/compsys.yo,
Completion/Base/Utility/_numbers, Completion/BSD/Command/_ipfw,
Completion/Linux/Command/_btrfs, Completion/Unix/Command/_dd,
Completion/Unix/Command/_git, Completion/Unix/Command/_head,
Completion/Unix/Command/_killall, Completion/Unix/Command/_pv,
Completion/Unix/Command/_rclone, Completion/Unix/Command/_rsync,
Completion/Unix/Command/_stdbuf, Completion/Unix/Command/_tail,
Completion/Unix/Command/_timeout, Completion/Unix/Command/_zfs,
Completion/X/Command/_xset: add a helper for completing numbers
with unit suffixes and separate out defaults, ranges and units
in completion descriptions
2021-11-22 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>
* 49586: Src/hist.c: fix :a and :A modifiers (with PWD="/") on
Cygwin
2021-11-19 Oliver Kiddle <opk@zsh.org>
* 49594: Completion/Unix/Command/_chmod: adapt to changes in 49499
to ensure file modes starting with dash aren't taken to be flags
* 49584: Completion/Unix/Command/_gem: allow for build options
in gem install completion
* Arseny Maslennikov: 49575: Doc/Zsh/compsys.yo:
clarify _alternative's action syntax
2021-11-15 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>
* 49563: Src/Modules/watch.c: fix build problem of watch module
on Cygwin
2021-11-12 Oliver Kiddle <opk@zsh.org>
* github #82: Dimitris Apostolou: Completion/BSD/Command/_kdump,
Completion/Redhat/Command/_dnf, Completion/BSD/Command/_ktrace,
Completion/Linux/Command/_modutils, Test/A01grammar.ztst,
Completion/Linux/Command/_sysstat, Functions/Chpwd/cdr,
Completion/Unix/Command/_ansible, Completion/Unix/Command/_gcc,
Completion/Mandriva/Command/_urpmi, Etc/NEWS-4.3,
Completion/Debian/Command/_aptitude, Etc/FAQ.yo,
Functions/Newuser/zsh-newuser-install, NEWS,
Functions/Misc/regexp-replace, Src/Zle/compmatch.c,
Src/exec.c, Src/math.c, Test/B12limit.ztst: fix typos
* Marlon: 49572: Completion/Base/Completer/_expand,
Test/Y01completion.ztst: Let _expand preserve array form w/out
zstyle glob
* unposted: Completion/Unix/Command/_ansible: fix case statement
fall-through for ansible-galaxy role completion
* 49566: Doc/Zsh/compsys.yo: document the _default function
* 49564: Completion/Unix/Type/_files, Doc/Zsh/compsys.yo: always
use descriptions included in the file-patterns style and allow
the recursive-files style to also work in those cases
* 49562: Doc/Zsh/compsys.yo: remove old documentation for
other-files tag that was removed in 36165
* 49561: Src/Modules/zutil.c, Doc/Zsh/mod_zutil.yo,
Completion/Base/Core/_description, Completion/Base/Core/_message,
Test/V13zformat.ztst: Add zformat -F option, similar to -f but
ternary expressions check for existence instead of doing math
evaluation. Make use of it with the format style.
2021-11-07 Oliver Kiddle <opk@zsh.org>