forked from zsh-users/zsh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
14536 lines (9279 loc) · 476 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
2018-12-19 Peter Stephenson <[email protected]>
* unposted: Config/version.mk, Etc/FAQ.yo, README: update for
5.6.2-test-2.
2018-12-19 Peter Stephenson <[email protected]>
* unposted c.f. 43913: Functions/Zle/edit-command-line: emulate
-L zsh to avoid bad effects with globsubst.
2018-12-17 dana <[email protected]>
* 43897: Completion/Darwin/Command/_xcode-select,
Completion/Unix/Command/_asciidoctor,
Completion/Unix/Command/_asciinema,
Completion/Unix/Command/_host, Completion/Unix/Command/_mkfifo,
Completion/Unix/Command/_mknod, Completion/Unix/Command/_shred,
Completion/Unix/Command/_tail, Completion/Unix/Command/_tty,
Completion/Unix/Command/_visudo, Completion/Unix/Type/_hosts:
Add/update various completion functions
* 43895: Completion/Unix/Command/_watch: Complete for
procps/-ng watch
2018-12-17 Joey Pabalinas <[email protected]>
* 43904 (plus tweak): Doc/Zsh/grammar.yo: zshmisc(1): document
term being optional if `in word' is omitted
2018-12-14 dana <[email protected]>
* unposted: Completion/Unix/Command/_dig: Fix _arguments syntax
error
2018-12-13 Daniel Shahaf <[email protected]>
* 43879: Functions/VCS_Info/Backends/VCS_INFO_get_data_git:
vcs_info git: Fix fatal error in VCS_INFO_git_getbranch in
corner case
2018-12-09 dana <[email protected]>
* 43871: Completion/Unix/Type/_files: Support `-F '(pat ...)'` as
with _path_files
2018-12-04 Peter Stephenson <[email protected]>
* 43860, 43861: Completion/Unix/Type/_files: complete globbing
flags at start of word.
2018-11-29 Peter Stephenson <[email protected]>
* 43854: Src/lex.c: set tok to LEXERR on generic parser error so
this gets picked up by main loop.
2018-11-21 Peter Stephenson <[email protected]>
* 43837 (test from Daniel): Src/subst.c, Test/D04parameter.ztst:
Nested substitution didn't remove Nularg from empty string,
giving bogus character.
2018-11-19 Jun-ichi Takimoto <[email protected]>
* 43829: Src/Modules/nearcolor.c: use double instead of float
2018-11-16 dana <[email protected]>
* Daniel O'Connor: 43830: Completion/BSD/Command/_cu: Complete
/dev/cu.* (used by macOS)
2018-11-15 Jun-ichi Takimoto <[email protected]>
* unposted: Completion/Unix/Command/_zcat: support macOS
* Ivan Tkachenko: 43823: Src/Modules/stat.c: remove unnecessary
metafy() in stattimeprint()
2018-11-14 Peter Stephenson <[email protected]>
* 43620: Doc/Zsh/expn.yo: more care documenting command
substituion including $(<...).
2018-11-13 dana <[email protected]>
* 43809: Completion/Unix/Command/_npm: Suppress npm update checks
during completion
* unposted (cf. 43800): Completion/Zsh/Command/_strftime: Update
strftime completion for nanoseconds change
* 43800: Doc/Zsh/mod_datetime.yo, Src/Modules/datetime.c,
Test/V09datetime.ztst: Add nanosecond support to strftime built-in
2018-11-12 Oliver Kiddle <[email protected]>
* 43819: Completion/Unix/Command/_adb: expand adb completion to
also cover options to adb backup
* 43818: Completion/Zsh/Type/_module_math_func: complete math
functions for other modules besides zsh/mathfunc
* 43816: Completion/Linux/Command/_valgrind,
Completion/BSD/Command/_vmctl, Completion/Linux/Command/_ethtool,
Completion/Linux/Command/_losetup, Completion/Linux/Command/_lsblk,
Completion/Unix/Command/_ansible, Completion/Unix/Command/_column,
Completion/Unix/Command/_dhclient, Completion/Unix/Command/_links,
Completion/Unix/Command/_dmidecode, Completion/Unix/Command/_jq,
Completion/Unix/Command/_luarocks, Completion/Unix/Command/_mpc,
Completion/Unix/Command/_samba, Completion/Unix/Command/_script,
Completion/Unix/Command/_ssh, Completion/Unix/Command/_tmux:
various completion option updates
* 43817: Completion/Linux/Command/_btrfs: update options in
completion through to btrfs 4.17.1
* 43813: Completion/BSD/Command/_powerd: add units, default
values and allow option arguments in the same word as the option
* 43812: Completion/Unix/Command/_gcc: allow repeats of
the -Wsuggest-attribute option
2018-11-09 Peter Stephenson <[email protected]>
* 43790: Kamil: Src/utils.c: failed mailstat could leak memory.
* 43789: Kamil: Src/module.c: possible use after free handling
math functions from module.
* 43792: Kamil: Src/exec.c: file descriptor could leak on fork error.
* 43793: Kamil: Src/Zle/computil.c: could overrun buffer by 1 byte.
* 43791: Kamil: Src/Modules/clone.c: file descriptor was closed twice.
2018-11-08 Oliver Kiddle <[email protected]>
* 43779 (tweaked): Joey Pabalinas: Functions/Zle/select-bracketed:
add parentheses to fix expression with cprecedences option set
* 43805: Src/Modules/nearcolor.c, Src/prompt.c: make nearcolor
module use the default colour rather than black as a fallback
* 43804: Src/prompt.c: also need to be able to turn colour
attributes back into hex triples for region_highlight variable
* unposted: Src/Modules/nearcolor.c: add usual copyright header
* 43784: Completion/Zsh/Command/_compadd: clarify descriptions on
options related to match sorting
* unposted (c.f. Bart: 43739):
Completion/Zsh/Context/_brace_parameter: use a correct
description for the @ parameter expansion flag
2018-11-07 Peter Stephenson <[email protected]>
* 43788: Doc/Zsh/mod_zpty.yo: make it clear -n option to
zpty -w is irrelevant if no string argument.
2018-11-07 Jun-ichi Takimoto <[email protected]>
* 43761: Completion/BSD/Type/_file_flags,
Completion/Unix/Command/_mktemp, Completion/Unix/Command/_script,
Completion/Unix/Command/_strip, Completion/Unix/Type/_file_systems:
add or update support for darwin
2018-11-05 Oliver Kiddle <[email protected]>
* 43760: Doc/Makefile.in, Doc/Zsh/mod_nearcolor.yo,
Doc/Zsh/zle.yo, NEWS: add documentation for true colour
changes and nearcolor module
* 43759: Src/Modules/nearcolor.c, Src/Zle/complist.c,
Src/Zle/zle.h, Src/Zle/zle_refresh.c, Src/Zle/zle_tricky.c,
Src/prompt.c, Src/zsh.h, Src/zsh_system.h: add support for
true colour terminals
* 43747: Src/Modules/nearcolor.c, Src/Modules/nearcolor.mdd,
Src/init.c, Src/prompt.c, Src/zsh.h: new module to map
colours from hex triplets to the nearest matching colour
2018-11-03 Peter Stephenson <[email protected]>
* 43752: Completion/Base/Completer/_expand: Fix quoting if
globbing failed / was not tried for expression on command line.
2018-11-02 Oliver Kiddle <[email protected]>
* 43748: Completion/Unix/Command/_ack: fix for ack 3beta
* github #29: Wieland Hoffmann: Completion/Unix/Command/_git:
Add completion support for Gits --color-moved option and
color settings
2018-10-31 Jun-ichi Takimoto <[email protected]>
* 43746: Completion/Unix/Command/_ping: update for BSD and
Darwin
* 43744: Completion/Unix/Command/_sysctl: add support for
procps-ng (Linux) and NetBSD, with several other updates
2018-10-24 Daniel Shahaf <[email protected]>
* 43726: Test/A01grammar.ztst: Add tests for semicolon in the
middle of a sublist not terminating it.
2018-10-24 Jun-ichi Takimoto <[email protected]>
* 43723: Completion/Unix/Command/_mkdir: fix for builtin
mkdir, and add support for darwin
* 43722: Completion/Unix/Command/_ed,
Completion/Unix/Command/_env, Completion/Unix/Command/_sort:
use the same completions as freebsd for darwin.
* 43721: Completion/Unix/Command/_diff3: detect GNU variant
correctly
2018-10-24 dana <[email protected]>
* 43718: Completion/BSD/Command/_fstat,
Completion/Unix/Command/_awk, Completion/Unix/Command/_cat,
Completion/Unix/Command/_chown, Completion/Unix/Command/_df,
Completion/Unix/Command/_grep, Completion/Unix/Command/_ls,
Completion/Unix/Command/_od, Completion/Unix/Command/_pax,
Completion/Unix/Command/_rar, Completion/Unix/Command/_rm,
Completion/Unix/Command/_xxd: Use singular group descriptions
2018-10-23 Peter Stephenson <[email protected]>
* Marcin Mielniczuk: 43714: Completion/Unix/Command/_lp: lp
fit-to-page option.
* Sebastian: 43695: Src/lex.c: minor but simple optimisation
to reuse existing string lengths.
2018-10-22 dana <[email protected]>
* 43713: Completion/Unix/Command/_init_d: Improve completion of
service commands
2018-10-17 Peter Stephenson <[email protected]>
* 43694: Doc/Zsh/redirect.yo: More detail on how multio file
opening differs from cat.
2018-10-17 Oliver Kiddle <[email protected]>
* 43697: Completion/X/Command/_zathura: match uppercase
filename extensions
* 43698: Completion/Unix/Command/_git: update options for 2.19
2018-10-16 Daniel Shahaf <[email protected]>
* 43692: Doc/Makefile.in: Generate man pages in the build dir,
rather than the source dir.
2018-10-15 dana <[email protected]>
* 43672: Doc/Zsh/redirect.yo: Document result of redirecting
from a non-existent file
2018-10-14 Daniel Shahaf <[email protected]>
* unposted: Src/utils.c: internals: Document sepjoin().
* 43685: Functions/Misc/add-zle-hook-widget: Support running
under NO_UNSET ('set -u').
2018-10-12 Peter Stephenson <[email protected]>
* 43674: Src/zsh.h, Config/version.mk: Split more parameter and
function flags to avoid using sign bit; bump version because of
wordcode incompatibility.
2018-10-10 dana <[email protected]>
* 43602: Doc/Zsh/compsys.yo: Clarify behaviour of `compdef -p`
2018-10-10 Peter Stephenson <[email protected]>
* unposted: Test/C03traps.ztst: Another couple of tests for
other code paths.
* 43669: Src/builtin.c, Src/init.c, Test/C03traps.ztst: ensure
explicit exit status is used rather than implicit.
2018-10-09 Peter Stephenson <[email protected]>
* 43660: Src/builtin.c, Src/exec.c, Src/init.c,
Test/C03traps.ztst: extend 43653 for implicit exit and combine
logic with pending exit status from exits within functions.
* 43656: Src/builtin.c: special tied parameters don't have
tieddata.
* unposted: Test/C03traps.ztst: addition to previous test
suggested by Mikael.
* 43653: Src/builtin.c, Test/C03traps.ztst: explicit exit from
EXIT trap overrides previous status.
2018-10-08 a-wing <[email protected]>
* 43623: Completion/Linux/Command/_iptables: Fix Completion
iptables -t raw security
2018-10-08 Daniel Shahaf <[email protected]>
* 43620 (tweaked): Doc/Zsh/contrib.yo,
Functions/VCS_Info/Backends/VCS_INFO_get_data_git,
Functions/VCS_Info/VCS_INFO_set-patch-format, README: vcs_info
git: Reverse the order patches are passed to gen-unapplied-string
in.
* 43617: Functions/VCS_Info/Backends/VCS_INFO_get_data_git:
vcs_info git: During a non-interactive rebase of a detached head,
computer the %b expando correctly.
* 43619: Functions/VCS_Info/Backends/VCS_INFO_get_data_git:
vcs_info git: In non-interactive rebases, always set
$hook_com[git_patches_applied] to a string of the form 'foo bar',
never just 'foo'.
* 43618: Functions/VCS_Info/Backends/VCS_INFO_detect_p4,
Functions/VCS_Info/Backends/VCS_INFO_get_data_bzr,
Functions/VCS_Info/Backends/VCS_INFO_get_data_git,
Functions/VCS_Info/VCS_INFO_quilt: vcs_info: Don't redefine
helper functions on every execution of the autoloadable outer
function.
2018-10-08 Peter Stephenson <[email protected]>
* unposted: tweak to Doc/Zsh/builtins.yo to put close
parenthesis on new line for help files script.
* Stephane: 43616: Doc/Zsh/builtins.yo, Src/Modules/db_gdbm.c,
Src/Modules/parameter.c, Src/builtin.c, Src/hashtable.h,
Src/params.c, Src/subst.c, Src/zsh.h, Test/B02typeset.ztst:
Fixes and improvements to tied variables and interaction
with typeset -p.
2018-10-07 Daniel Shahaf <[email protected]>
* 43587: Functions/VCS_Info/Backends/VCS_INFO_get_data_git:
vcs_info git: In 'git rebase -i', when computing subjects
of applied-patches, handle an edge case where the subject is
not available.
* 43588: Functions/VCS_Info/Backends/VCS_INFO_get_data_git:
vcs_info git: Make sure applied-patches is of the form "$hash
$subject" --- that is, has a space and a non-empty second
argument --- even with future 'git rebase -i' verbs.
* 43586: Functions/VCS_Info/Backends/VCS_INFO_get_data_git:
vcs_info git: Reformat to minimise next diff. No functional
change.
* 43585: Functions/VCS_Info/Backends/VCS_INFO_get_data_svn:
vcs_info svn: Recognize working copies in need of an upgrade.
2018-10-03 Peter Stephenson <[email protected]>
* unposted: Etc/FAQ.yo: minor typos.
* 43589: Src/jobs.c: Show subjob status instead of superjob any
time it still has processes.
2018-10-02 Daniel Shahaf <[email protected]>
* unposted: Functions/VCS_Info/Backends/VCS_INFO_get_data_git:
Indicate which use-case each branch handles.
* unposted: Doc/Zsh/contrib.yo: Fix typo
2018-09-30 Daniel Shahaf <[email protected]>
* 43531: Src/Zle/compcore.c: Completion: Fix some false
positives in the logic for "are these two candidates completions
equivalent".
2018-09-28 Daniel Shahaf <[email protected]>
* 43570: Src/jobs.c: Start documenting jobs.c, in particular
superjobs.
2018-09-27 Daniel Shahaf <d.s@xxxxxxxxxxxxxxxxxx>
* 43563: Doc/Zsh/zle.yo: zshzle: Clarify sentence in
introduction.
2018-09-26 Peter Stephenson <[email protected]>
* 43564: Better output concerning stopped subjob.
* 43542 (tweaked): Etc/FAQ.yo: further update about which output.
2018-09-25 Daniel Shahaf <[email protected]>
* 43528: Doc/Zsh/builtins.yo: zshbuiltins(1): Document 'which''s
"not found is not an error" behaviour.
2018-09-25 Oliver Freyermuth <o.freyermuth@xxxxxxxxxxxxxx>
* 43554 (tweaked): Completion/X/Command/_zathura: Fix zathura
completion ignoring multiple plugin directories.
2018-09-25 Oliver Freyermuth <[email protected]>
* 43544: Completion/X/Command/_zathura: Fix zathura filename
completion derived from *.so plugin name.
2018-09-25 Daniel Shahaf <[email protected]>
* 43489: Src/exec.c: Add error checking on a new write() call.
2018-09-25 Peter Stephenson <[email protected]>
* 43543: Src/jobs.c: Improvements to 43535: attempt to keep
STAT_STOPPED correct for superjob, also wait for subjob before
superjob.
2018-09-25 Daniel Shahaf <[email protected]>
* unposted: Test/B02typeset.ztst: Add a test for 43536.
2018-09-25 Peter Stephenson <[email protected]>
* Stephane: 43536: "typeset -p" should show presence of -U
option.
2018-09-24 dana <[email protected]>
* Takeshi Banse: users/23642: Completion/Unix/Type/_files: Revert
change from workers/42984
2018-09-24 Peter Stephenson <[email protected]>
* 43535: Src/jobs.c, Src/signals.c: fixes for bg / fg handling
of superjobs. Be more consistent about marking jobs running;
always send SIGCONT when putting superjob / subjob combination
into foreground; wait for both superjob and subjob when waiting
for superjob.
2018-09-24 Daniel Shahaf <[email protected]>
* 43493: Test/V07pcre.ztst: Have V07pcre fail if PCRE was enabled
by configure (config.modules) but failed to load for any reason.
2018-09-24 Peter Stephenson <[email protected]>
* 43527, tweaked: Etc/FAQ.yo: describe "which" output
behaviour.
2018-09-23 Oliver Kiddle <[email protected]>
* gitlab !2: Noam Barnea: Completion/Unix/Command/_toilet:
detect .flf files as well as .tlf ones
2018-09-21 Peter Stephenson <[email protected]>
* 43511: Src/input.c: alias entry on input stack wasn't
initialised if not expanding alias or using history.
2018-09-19 Maximilian Bosch <[email protected]>
* 43502: Completion/X/Command/_setxkbmap: Search XDG_DATA_DIRS
in _setxkbmap completion
2018-09-18 Oliver Kiddle <[email protected]>
* 43464: Completion/Linux/Command/_valgrind: complete options
for the drd tool and update them for helgrind
2018-09-17 Daniel Shahaf <[email protected]>
* unposted: ChangeLog: Fix typo, s/43464/43474/.
2018-09-16 dana <[email protected]>
* unposted: Doc/Zsh/builtins.yo: Fix trivial formatting error
2018-09-16 Peter Stephenson <[email protected]>
* 43474: Src/exec.c, Src/jobs.c, Src/signals.c, Src/utils.c:
Remember the last process group to attach to the terminal, not
just the set of running processes which did. Don't
record process groups for ESUB_ASYNC subshells.
2018-09-14 Daniel Shahaf <[email protected]>
* unposted: Completion/Unix/Command/_subversion: _svn: Allow
hyphens in command name aliases.
* unposted: Config/version.mk: Post-release version bump.
* 43457: Config/version.mk, Etc/FAQ.yo, NEWS, README: Release
5.6.2
2018-09-14 Peter Stephenson <[email protected]>
* 43466: Test/A05execution.ztst: path(5) test is too specific as
OS codes and messages may vary.
2018-09-12 Daniel Shahaf <[email protected]>
* unposted: Completion/Unix/Command/_subversion: _svn: Complete
--accept=recommended, new in 1.10.0.
* 43447: Etc/creating-a-release.txt, Makefile.in: Generate
tar.xz artifacts only.
* 43443: Completion/Unix/Command/_git: When completing worktrees,
show the ref and hash of each worktree.
* 43442: Completion/Unix/Command/_git: Break out a helper
function.
2018-09-12 Peter Stephenson <[email protected]>
* 43450: Src/signals.c: fix window size if reattaching shell
to terminal on exit of process.
* 43446: Src/exec.c, Src/jobs.c, Src/zsh.h: enhance 43409 to
pass back list_pipe_job as well, fixing additional races.
2018-09-10 Jörg Thalheim <[email protected]>
* GitHub #28: Src/builtin.c: Add missing math.h include for
builtins
2018-09-10 Peter Stephenson <[email protected]>
* 43426: Test/W02jobs.ztst: disable tests involving suspending
jobs as these are provoking races in particular on OpenSUSE.
2018-09-08 Daniel Shahaf <[email protected]>
* unposted: Etc/creating-a-release.txt: Add another step.
* unposted: Config/version.mk: Post-release version bump.
* unposted: Config/version.mk, Etc/FAQ.yo, NEWS, README: Patch
release: 5.6.1
2018-09-07 Peter Stephenson <[email protected]>
* 43409: Src/exec.c, Src/jobs.c: ensure main shell and newly
started subshell are agreed on which process group the latter
belongs to.
2018-09-07 Daniel Shahaf <[email protected]>
* 43404 (after 43392): Doc/Makefile.in: Fix 'make install'
in out-of-tree builds
2018-09-06 Daniel Shahaf <[email protected]>
* 43392: Doc/Makefile.in, Etc/creating-a-release.txt: dist:
Generate doc/help/* and doc/help.txt in builddir rather than
srcdir.
* 43366: Completion/Zsh/Command/_compdef: Change and add sources
for completed completion function names.
2018-09-05 dana <[email protected]>
* 43372: Completion/Linux/Command/_e2label: Add completion for
e2label
2018-09-05 Peter Stephenson <[email protected]>
* 43375 with fix from 43390: Test/A05execution.ztst: don't
assume path for sh and echo, work it out.
2018-09-05 Daniel Shahaf <[email protected]>
* unposted (cf 43373): Etc/creating-a-release.txt: Add two
caveats: no local modifications, and need to build in-tree.
2018-09-03 Daniel Shahaf <[email protected]>
* 43370: Etc/creating-a-release.txt: New maintainer-facing
documentation.
* unposted: Config/version.mk: Post-release version bump.
* unposted: Config/version.mk: Release 5.6.
2018-09-03 Anthony Sottile <[email protected]>
* CVE-2018-0502, CVE-2018-13259: Fix two security issues in
shebang line parsing. [With Buck Evan]
2018-09-03 Daniel Shahaf <[email protected]>
* 43367: Makefile.in: Add maintainer targets 'tarxz-src' and
'targz-src'.
2018-09-03 Oliver Kiddle <[email protected]>
* unposted: NEWS: mention Inf/NaN floating point changes
* unposted: Makefile.in: further to 43358 use same patchlevel
form for the release file
2018-09-03 Daniel Shahaf <[email protected]>
* 43333: Etc/Makefile.in: Generate FAQ.html in the builddir,
rather than in the srcdir, and add it to the default target of
the Etc/ subdirectory.
2018-09-03 Peter Stephenson <[email protected]>
* 43365: Src/Zle/zle_keymap.c, Src/Zle/zle_main.c,
Src/Zle/zle_misc.c, Src/Zle/zle_vi.c: Don't handle ZLE timed
functions if just reading a single key.
2018-08-31 Oliver Kiddle <[email protected]>
* 43358: Src/zsh.mdd: enforce consistent patchlevel form
* 43357: configure.ac: isinf/isnan can be macros rather
than functions so need a custom configure test
* unposted: Completion/Unix/Command/_git: git describe's
--long and --abbrev options are not mutually exclusive
* 43359: Completion/Unix/Command/_git:
further review of git remote set-url completion
* 42810: pseyfert: Completion/Unix/Command/_git:
git remote set-url completion
2018-08-30 Jun-ichi Takimoto <[email protected]>
* 43349: Completion/X/Command/_eog: new completion for eog
* 43350: Completion/Unix/Command/_zsh: support --emulate
2018-08-29 Oliver Kiddle <[email protected]>
* 43351: Completion/Unix/Type/_diff_options: handle the new
diff implementation in the pre-release version of FreeBSD 12
* 43346: Completion/Linux/Command/_cryptsetup,
Completion/Linux/Command/_networkmanager,
Completion/Linux/Command/_strace, Completion/Unix/Command/_attr,
Completion/Linux/Command/_sysstat, Completion/Unix/Command/_cmp,
Completion/Unix/Command/_dhclient, Completion/Unix/Command/_dig,
Completion/Unix/Command/_entr, Completion/Unix/Command/_gnutls,
Completion/Unix/Command/_env, Completion/Unix/Command/_iostat,
Completion/Unix/Command/_ln, Completion/Unix/Command/_md5sum,
Completion/Unix/Command/_ps, Completion/Unix/Command/_route,
Completion/Unix/Command/_service, Completion/Unix/Command/_sort,
Completion/Unix/Command/_split, Completion/Unix/Command/_top:
various completion option updates
* 43348: Anton Shestakov: Completion/Unix/Command/_hg:
check for both -r and --rev
* 43347: Anton Shestakov: Completion/Unix/Command/_hg:
use revsets for suggestions for hg merge
2018-08-28 Oliver Kiddle <[email protected]>
* 43345: Completion/Unix/Command/_mount,
Completion/Unix/Type/_umountable: don't modify global variable
* unposted: Completion/Linux/Command/_dkms: correct
completion argument order
* unposted: Completion/Unix/Command/_strings: completion for
argument to -s was missing
* unposted: Completion/Unix/Command/_tar: complete also for bsdtar
* unposted: Completion/Solaris/Command/_svccfg: fix typo in
function call
2018-08-25 Daniel Shahaf <[email protected]>
* unposted: Etc/FAQ.yo: Fix FAQ build, broken by 43184.
* unposted: Config/version.mk, NEWS, README: Test release:
5.5.1-test-1.
* 43331: Completion/Unix/Command/_diff3: Enhance positional
argument descriptions (thanks, Oliver).
2018-08-24 Daniel Shahaf <[email protected]>
* 43313 (log message tweaked):
Functions/VCS_Info/Backends/VCS_INFO_get_data_git: vcs_info git:
For the branch name, try to find a symbolic name before falling
back to a raw commit hash.
* 43314: Functions/VCS_Info/Backends/VCS_INFO_get_data_git:
vcs_info git: Flatten a nested if.
2018-08-24 Oliver Kiddle <[email protected]>
* 43330: Completion/BSD/Command/_cu: complete more options
* 43329: Completion/Unix/Command/_diff3: new diff3 completion
* 43328: Completion/X/Command/_zeal: new completion
2018-08-23 dana <[email protected]>
* unposted: Completion/Unix/Command/_man: Fix --ascii typo
2018-08-23 Oliver Kiddle <[email protected]>
* 43325: Anton Shestakov: Completion/Unix/Command/_hg:
suggest merge tools for -t/--tool
* 43326: Anton Shestakov: Completion/Unix/Command/_hg:
add completion of -S/--subrepos to many commands
* github #27: Klas Mellbourn: Completion/X/Command/_code:
add --folder-uri to completion for Visual Studio Code
* 43301 (based on work by Julien Nicoulaud):
Completion/Debian/Command/_debuild, Completion/Unix/Command/_ack,
Completion/Unix/Command/_scons, Completion/Unix/Command/_vpnc,
Completion/X/Command/_geany: functions from zsh-completions project
2018-08-21 Daniel Shahaf <[email protected]>
* unposted: Doc/Zsh/compsys.yo: docs: Fix duplicated words
in _combination.
2018-08-16 Peter Stephenson <[email protected]>
* 43294: Doc/Zsh/zle.yo, Src/Zle/zle_main.c,
Src/Zle/zle_params.c: Add ZLE_RECURSIVE parameter.
2018-08-15 dana <[email protected]>
* 43302: Completion/Unix/Command/_du: Change -B to -B+
2018-08-13 Daniel Shahaf <[email protected]>
* unposted: Completion/Unix/Command/_make: Allow pasted arguments
for GNU make's -j option.
2018-08-13 Peter Stephenson <[email protected]>
* dana: 43275: Doc/Zsh/mod_mathfunc.yo, Src/Modules/mathfunc.c,
Test/V03mathfunc.ztst, configure.ac: Add log2 to mathfunc.
2018-08-12 Marc Cornellà <[email protected]>
* unposted (PR #26): Completion/Unix/Command/_git: __git_files:
fix double quotation of star
2018-08-09 Peter Stephenson <[email protected]>
* 43264: Src/params.c, Test/D04parameter.ztst:
${+assoc[nonexistent]} returned 1 with KSH_ARRAYS.
2018-08-08 Peter Stephenson <[email protected]>
* 43261: Src/math.c, Test/C01arith.ztst: Apply unary minus to
entire lexical constant, so base doesn't get treated as negative.
2018-08-07 Peter Stephenson <[email protected]>
* Anton Shestakov: 43254: Completion/Unix/Command/_hg: Remove hg
-w and add hg -S.
* Anton Shestakov: 43252: Completion/Unix/Command/_hg: fix up
various hg options for completion.
* Anton Shestakov: 43250: Completion/Unix/Command/_hg: Add hg
forget, phase, summary completions.
* Anton Shestakov: 43251: Completion/Unix/Command/_hg: fix
return value of some hg completion functions.
* Anton Shestakov: 43253: Completion/Unix/Command/_hg: hg
--style is deprecated, use --template.
2018-08-01 Jun-ichi Takimoto <[email protected]>
* 43227: Src/Modules/termcap.c, Src/Modules/terminfo.c,
Src/utils.c: fix memory leaks not fixed in 43219
2018-07-31 dana <[email protected]>
* 43207 (tweaked): Completion/Unix/Type/_bind_addresses,
Completion/Unix/Command/_php: Add options to control _bind_addresses
behaviour, improve PHP completion
2018-07-31 Jun-ichi Takimoto <[email protected]>
* 43219 (except term{cap,info}.c): Src/Modules/db_gdbm.c,
Src/Modules/pcre.c, Src/Zle/compcore.c, Src/init.c, Src/math.c,
Src/subst.c: fix several memory leaks
2018-07-30 Peter Stephenson <[email protected]>
* 43225: Src/Zle/zle_main.c: recalculate timeout after calling
handler within ZLE raw read.
2018-07-29 Matthew Martin <[email protected]>
* 43185: Completion/Zsh/Type/_command_names: Use [ suffix for
associative arrays. Add + to remove-chars from Oliver.
* 43184: Etc/FAQ.yo: Remove reference to ftp_sites.yo.
2018-07-25 dana <[email protected]>
* 43203: Completion/Unix/Command/_lua: Add completion for lua
* Simon Ruderich: 43200: Completion/Linux/Command/_iptables: Add
completion for ip6tables*
2018-07-20 dana <[email protected]>
* 43196: Completion/Unix/Command/_nginx: Add completion for nginx
2018-07-20 Jun-ichi Takimoto <[email protected]>
* 43192: Completion/Unix/Command/_pgrep: simplify the completions
of comma-separated list of IDs.
2018-07-19 dana <[email protected]>
* 43186 (tweaked): Completion/Unix/Command/_crontab: Add completion
for cronie/dcron/Vixie crontab
2018-07-19 Jun-ichi Takimoto <[email protected]>
* 43189: Completion/Unix/Command/_install: similar fix as 43187
for option -f (_flags was renamed to _file_flags)
* 43183: Completion/Unix/Type/_ttys, Completion/Unix/Command/_gdb,
Completion/Unix/Command/_pgrep: fix '_ttys -o' on Linux, and use
it in _gdb and _pgrep.
2018-07-19 Yasuhiro KIMURA <[email protected]>
* 43187: Completion/Unix/Command/_install: Fix completion error
about 'm' option of 'install' command
2018-07-17 Peter Stephenson <[email protected]>
* Doron Behar: 43166: Completion/Unix/Type/_pspdf,
Completion/X/Command/_zathura: new zathura completion.
2018-07-18 Jun-ichi Takimoto <[email protected]>
* 43177: Completion/Unix/Command/_grep: support bzgrep, and add
a few options for macOS.
* 43182: Completion/Unix/Command/_lldb: complete process name
after option -n/--attach-name
2018-07-17 Peter Stephenson <[email protected]>
* unposted: Doc/Makefile.in: remove ftp_sites.yo.
* Matthew Martin: 43179: Doc/Zsh/contrib.yo,
Doc/Zsh/ftp_sites.yo, Doc/Zsh/metafaq.yo: update distro docs to
remove dead links.
* 43176: Doc/Zsh/intro.yo: note right at start of manual that
default mode is not POSIX.
2018-07-16 Peter Stephenson <[email protected]>
* Tim Smith: 43172: Doc/Zsh/mod_zutil.yo: document escaping of
colon in zformat -a.
2018-07-11 Jun-ichi Takimoto <[email protected]>
* 43164: Completion/Unix/Command/_gcc: fix 'args=' to 'args+=',
and update a few options.
2018-07-10 Jun-ichi Takimoto <[email protected]>
* 43155: Completion/Unix/Command/_gcc: escape : in action for -std
2018-07-10 Peter Stephenson <[email protected]>
* 43156, 43157: Src/exec.c: need to allow for possible
update of pointer by two in gethere().
2018-07-09 Peter Stephenson <[email protected]>
* users/23531: Src/exec.c, Test/C03traps.ztst: Fix error
exit/return from within shell construct inside nested function,
and in left hand side of pipe (regression due to broken tests);
stop tests from exiting too early and add new test for first fix.
2018-07-07 Matthew Martin <[email protected]>
* 43106: Completion/BSD/Command/_ldap: Add ldap completer.
* 43046: Completion/Unix/Type/_pdf, Completion/X/Command/_mupdf:
Add mupdf completer.
* 42995: David Klann: Completion/Linux/Command/_networkmanager:
Only complete active connections for nmcli connection down.
2018-07-03 dana <[email protected]>
* 43105 (tweaked): Completion/Unix/Command/_pgrep: Add full procps
support, other improvements
2018-07-03 Peter Stephenson <[email protected]>
* dana: 43134: Completion/Unix/Type/_signals: don't complete SIG
in front of numeric signals.
2018-07-02 Jun-ichi Takimoto <[email protected]>
* 43108, 43121: Completion/Unix/Command/_killall: complete
various options
2018-07-01 Doron Behar <[email protected]>
* 43059: Completion/Unix/Command/_gpg: Use explicit UIDs for
state = public keys.
2018-07-01 Jun-ichi Takimoto <[email protected]>
* 43107: Completion/Unix/Type/_ttys, Completion/Unix/Command/_ps,
Completion/BSD/Command/_watch-snoop: add an option to _ttys to
complete only open ttys, and use it in _ps and _watch-snoop.
2018-06-29 Peter Stephenson <[email protected]>
* users/23519: README, Completion/Unix/Type/_remote_files: Use tag
remote-files instead of files for remote files.
2018-06-27 Daniel Hahler <[email protected]>
* 42746: Completion/Unix/Command/_vim: _vim: handle special values for
-u/-U.
2018-06-27 Eric Cook <[email protected]>
* 43096: Eitan: Completion/Unix/Command/_vim, remove duplicate flag
2018-06-25 Daniel Shahaf <[email protected]>
* 43091: Src/glob.c: In the (u) glob qualifier, expand and
correct "unknown user" error messages.
2018-06-25 Peter Stephenson <[email protected]>
* 43084: Doc/Zsh/zle.yo, Functions/Chpwd/zsh_directory_name_cdr,
Src/Zle/zle_main.c: vared -g suppresses variable creation and
override warnings; also suppress in function.
2018-06-25 Jun-ichi Takimoto <[email protected]>
* 43079, 43086: Completion/Unix/Type/_process_names,
Completion/Unix/Command/_dtruss, Completion/Darwin/Command/_fs_usage,
Completion/Darwin/Command/_sc_usage: new utility to complete names
of running processes, and three new completion functions which use it.
* 43080: Completion/Unix/Type/_sys_calls: analyze recent syscall.h
properly
2018-06-24 dana <[email protected]>
* unposted: Completion/Linux/Command/_opkg: Fix mistyped variable
name
2018-06-23 dana <[email protected]>
* 43081: Completion/Darwin/Command/_networksetup: Add networksetup
completion
* 43088: Completion/Debian/Command/_wajig: Fix sub-command completion
2018-06-18 Oliver Kiddle <[email protected]>
* 43074: Eitan: Completion/Unix/Command/_gcc: Completion for
additional linker options for clang and sanitizers for gcc
* 43078: Completion/Unix/Command/_sed: add completion for the
sed expression
* 43073: Completion/Linux/Command/_cryptsetup,
Completion/Linux/Command/_sysstat, Completion/Linux/Command/_ss,
Completion/Linux/Command/_kpartx, Completion/Linux/Command/_tune2fs,
Completion/Unix/Command/_ansible, Completion/Unix/Command/_git,
Completion/Unix/Command/_lynx, Completion/Unix/Command/_mpc,
Completion/Unix/Command/_readelf, Completion/Unix/Command/_sqlite,
Completion/Unix/Command/_subversion, Completion/Unix/Command/_tmux,
Completion/Unix/Command/_user_admin, Completion/Unix/Command/_wget,
Completion/Unix/Command/_xxd, Completion/X/Command/_qiv,