-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
16137 lines (10506 loc) · 519 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
2012-03-29 Peter Stephenson <p.w.stephenson@ntlworld.com>
* unposted: Doc/Zsh/zle.yo: add missing parenthesis.
* users/16932: Doc/Zsh/zle.yo, Functions/Zle/replace-string:
Src/Zle/zle.h, Src/Zle/zle_params.c, Src/Zle/zle_utils.c:
implement $UNDO_CHANGE_NO and argument to undo widget.
2012-03-25 Mikael Magnusson <mikachu@gmail.com>
* Jesper Nygårds: 30378: Completion/Unix/Command/.distfiles,
Completion/Unix/Command/_gradle: new gradle completion.
2012-03-24 Mikael Magnusson <mikachu@gmail.com>
* 30371: Completion/Unix/Command/_ssh: You can specify -i
multiple times.
* 30372: Completion/Unix/Command/_tmux: Redirect error output
produced when no tmux server is running to /dev/null.
* 30368: Completion/Unix/Command/_tmux: Make completion work
when an unambiguous prefix for a known subcommand is given, as
in 'tmux att -<tab>'.
2012-03-23 Simon Ruderich <simon@ruderich.org>
* 30366: Misc/vcs_info-examples: Fix outdated quilt examples.
* 30367: Doc/Zsh/contrib.yo: vcs_info, mention settings used for
patch-format/nopatch-format.
2012-03-13 Peter Stephenson <pws@csr.com>
* Luka Perkov: 30354: Completion/Unix/Command/_quilt: update
* 30351 changed as in 30352: Src/params.c, Src/utils.c: metafy
scalar and array parameter values as they are imported from
strings defined outside zsh.
2012-03-07 Peter Stephenson <pws@csr.com>
* users/16865: Doc/Zsh/cond.yo: note that -eq and friends are
less convenient for purely numeric work than conditional
expressions.
2012-03-06 Peter Stephenson <p.w.stephenson@ntlworld.com>
* Alexey: 30322: Completion/Unix/Command/_xmlsoft: accept more
file types.
2012-03-06 Barton E. Schaefer <schaefer@zsh.org>
* 30320: Doc/Zsh/builtins.yo, Src/builtin.c, Src/init.c,
Src/options.c: "emulate" accepts invocation-time setopt flags
after the shell name, in addition to "-c command".
* 30320 (bonus): Doc/Zsh/params.yo: document interaction of
sun_keyboard_hack with the KEYBOARD_HACK paramter.
* 30320 (misc.): Etc/FAQ.yo: rectify a minor omission.
2012-03-05 Clint Adams <clint@zsh.org>
* 30314: Completion/Unix/Command/_ssh: add completion for
ssh-copy-id.
* 30316: Completion/Unix/Type/_pdf: complete .pdf for evince and
epdfview.
* 30317: Completion/Unix/Command/_git: complete git merge --ff-only
2012-03-05 Peter Stephenson <pws@csr.com>
* 30307 plus change suggested by Wayne in 30309: configure.ac,
Src/exec.c, Src/glob.c, Src/prompt.c, Src/utils.c,
Src/Modules/parameter.c: use %lld format where available when
zlong is long long.
2012-03-01 Peter Stephenson <pws@csr.com>
* 30303: Doc/builtins.yo, Src/options.c: emulate executed inside
a function marked for execution tracing enables xtrace.
2012-02-29 Barton E. Schaefer <schaefer@zsh.org>
* 30272 (tweaked): Src/exec.c: most failures of fork() cause
non-interactive shells to exit nonzero; bad options to "exec"
cause exit under POSIX_BUILTINS behavior.
* unposted (see users/16715): Doc/Zsh/options.yo: document the
effects of HASH_LIST_ALL on spelling correction.
* 30184: Src/hashtable.c: the HASH_EXECUTABLES_ONLY test matches
the test used during path search in exec.c:iscom().
* unposted (see 30090): Functions/Misc/add-zsh-hook: add -h and
-L options for help text and a list of extant hooks respectively.
* unposted (see users/16697): Functions/Misc/zkbd: select a more
reasonable output file name when the DISPLAY variable refers to a
local socket file (MacOS); fix problem with writing the output
file when the user overrides the default value of TERM.
2012-02-29 Mikael Magnusson <mikachu@gmail.com>
* 30276: Src/glob.c: Use zlong rather than int when calculating
brace expansions of the form {1..9}.
2012-02-29 Peter Stephenson <pws@csr.com>
* 30299: Src/subst.c, Test/D04parameter.ztst: "$*" was split
in SHWORDSPLIT if IFS was unset or empty.
2012-02-26 Peter Stephenson <p.w.stephenson@ntlworld.com>
* Alexey I. Froloff: 30270: Test/C02cond.ztst: we don't care
about errors from df when testing whether the file system has
noatime.
* unposted: Config/version.mk: Update version to 4.3.17-dev-0 to
avoid clash with release, also fix incorrect year noticed by
Darryl Zurn.
2012-02-23 Peter Stephenson <p.w.stephenson@ntlworld.com>
* unposted: 4.3.17.
2012-02-22 Peter Stephenson <pws@csr.com>
* 30238 with small fixes: Doc/Zsh/jobs.yo: document the fork
behaviour on suspending complex builtin execution.
2012-02-20 Barton E. Schaefer <schaefer@zsh.org>
* 30242: Src/subst.c, Test/D04parameter.ztst: use PREFORK_SINGLE
for the right-hand side of ${...=...} when SH_WORD_SPLIT is in
effect (POSIX emulation).
2012-02-19 Peter Stephenson <p.w.stephenson@ntlworld.com>
* unposted: Etc/Config.yo, Completion/X/Type/.distfiles,
Test/.distfiles: 4.3.16.
2012-02-15 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 30231 plus Mikael's change in 30232: NEWS, README, Etc/FAQ.yo:
updates for 4.3.16.
2012-02-14 Oliver Kiddle <opk@zsh.org>
* 30198: Completion/Unix/Command/_sudo, Doc/Zsh/compsys.yo:
fix environ style lookup to be done in conventional manner
* Mikael: Completion/Debian/Command/_dpkg: fix dpkg-deb
completion broken by 30199
2012-02-14 Peter Stephenson <pws@csr.com>
* users/16760: Functions/Zle/url-quote-magic: make reply
local for the benefit of styles.
2012-02-13 Frank Terbeck <ft@bewatermyfriend.org>
* 30214: Functions/Prompts/prompt_redhat_setup: Fix quoting in
`redhat' prompt.
2012-02-12 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 30203 (plus rename PF_ flags to PREFORK_): Src/exec.c,
Src/glob.c, Src/subst.c, Src/zsh.h, Test/D04parameter.ztst:
Pass sh-wordsplitting instructions to nested parameter
substitution by flags, avoiding side effects of explicitly
changing the option.
2012-02-11 Mikael Magnusson <mikachu@gmail.com>
* 30206: Completion/Unix/Command/_ldd: Fix ldd completion broken by
previous commit.
2012-02-10 Oliver Kiddle <opk@zsh.org>
* 30199: Completion/Debian/Command/_pbuilder,
Completion/Darwin/Command/_defaults, Completion/Darwin/Command/_fink,
Completion/Darwin/Command/_hdiutil, Completion/Debian/Command/_dak,
Completion/Debian/Command/_debdiff, Completion/Debian/Command/_dpkg,
Completion/Debian/Command/_linda, Completion/Debian/Command/_lintian,
Completion/Debian/Command/_piuparts,
Completion/Linux/Command/_modutils,
Completion/Mandriva/Command/_urpmi,
Completion/Unix/Command/_bittorrent,
Completion/Unix/Command/_bogofilter, Completion/Unix/Command/_cdrdao,
Completion/Unix/Command/_cplay, Completion/Unix/Command/_git,
Completion/Unix/Command/_hg, Completion/Unix/Command/_ldd,
Completion/Unix/Command/_metaflac, Completion/Unix/Command/_pax,
Completion/Unix/Command/_rubber, Completion/Unix/Command/_sisu,
Completion/Unix/Command/_texinfo, Completion/Unix/Command/_vim,
Completion/Unix/Command/_vorbiscomment,
Completion/Unix/Command/_xmms2:
add (-.) to many completion _files globs
* 30197: Completion/Unix/Command/_subversion: complete changelists
* 30177: Completion/X/Command/_xterm,
Completion/X/Type/_xft_fonts: completion for fontconfig fonts
2012-02-09 Barton E. Schaefer <schaefer@zsh.org>
* 30193: Src/Zle/compcore.c: remnulargs() after poking into string
in case length changes.
2012-02-08 Peter Stephenson <pws@csr.com>
* Timothy Redaelli: 30187: Src/hist.c: file name manipulations
in history can return NULL if HAVE_CANONICALIZE_FILE_NAME.
2012-02-07 Peter Stephenson <pws@csr.com>
* Holger Macht via Ismail: 30185: Src/Zle/complete.mdd: add
missing openSUSE file locations.
2012-02-05 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 30127: Src/builtin.c: forbid executing history lines via fc in
the wrong order.
2012-02-03 Peter Stephenson <pws@csr.com>
* Mariusz Glebocki: 30179: Completion/Unix/Type/_services:
suppress stderr for service list.
2012-02-01 Frank Terbeck <ft@bewatermyfriend.org>
* A.Costa: unposted: Doc/Zsh/grammar.yo, Etc/ChangeLog-3.1: Fix
typo to "definition".
2012-01-31 Peter Stephenson <pws@csr.com>
* seiler via Ismail: 30174: Completion/Unix/Command/_osc,
Completion/openSUSE/Command/_osc: update.
* Felipe: 30158: Test/.distfiles, Test/compgentest,
Test/Y04compgen.ztst: compgen test is not useful with current
bashcopmpinit.
2012-01-29 Peter Stephenson <p.w.stephenson@ntlworld.com>
* Richard Hartmann: 30140: Completion/X/Command/_mplayer:
whitespace fix.
* Felipe Contreras: 30131, 30132, 30133, 30134, 30135,
30136, 30137: Completion/bashcompinit: various improvements to
bash-like behaviour.
2012-01-23 Peter Stephenson <pws@csr.com>
* Ben: 30118: Completion/Unix/Command/_sqlite,
Completion/Unix/Command/.distfiles: new sqlite completion.
2012-01-22 Peter Stephenson <p.w.stephenson@ntlworld.com>
* Ben: 30117 (moved directory): Completion/X/Command/_xclip,
Completion/X/Command/.distfiles: new completion.
2012-01-19 Frank Terbeck <ft@bewatermyfriend.org>
* 30114: Functions/VCS_Info/VCS_INFO_check_com: Remove a
superfluous stat().
2012-01-16 Frank Terbeck <ft@bewatermyfriend.org>
* 30111: Src/exec.c: Fix segfaults with exec options.
2012-01-15 Peter Stephenson <p.w.stephenson@ntlworld.com>
* Richard Hartmann: 30110: Completion/Unix/Command/_vcsh,
Completion/Unix/Command/.distfiles: new completion.
2012-01-09 Peter Stephenson <p.w.stephenson@ntlworld.com>
* Stepan Koltsov: 30105: Completion/Unix/Command/_stgit: fix
delete completion.
2012-01-08 Peter Stephenson <p.w.stephenson@ntlworld.com>
* users/16711: Completion/Unix/Type/_path_commands: try to take
account of PATH_DIRS option in command completion.
* 30101: Doc/Zsh/options.yo, Src/hashtable.c, Src/options.c,
Src/zsh.h: add HASH_EXECUTABLES_ONLY option, off by default to
avoid problems with huge paths and remote directories.
2012-01-07 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 30098: Jun T.: Src/params.c: more minimal alternative to
30079, don't set LANG if LC_ALL set.
2012-01-06 Peter Stephenson <pws@csr.com>
* Src/Modules/pcre.c (cond_pcre_match): unposted: fix (harmless)
warning with uninitialised variable.
2012-01-05 Peter Stephenson <p.w.stephenson@ntlworld.com>
* Christian Höltje: 30087: Functions/Prompts/promptinit: remove
any hooks for a prompt theme when removing it.
* 30084: Doc/Zsh/zle.yo, Src/init.c, Src/Zle/zle_main.c,
Src/Zle/zle_refresh.c, Src/Zle/zle_thingy.c: `zle -T tc func'
defines function to be used insted of termcap output for
testing.
* 30081: Completion/Base/Core/_main_complete: remove necessity
to have IGNORE_CLOSE_BRACES unset when loaded.
2012-01-04 Frank Terbeck <ft@bewatermyfriend.org>
* 30079: Src/params.c: Restore `LC_ALL' when setting `LANG'.
2012-01-04 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 30084: Src/init.c: zsfree(argzero) before we set it again
following ztrdup() in parseargs().
2012-01-02 Barton E. Schaefer <schaefer@zsh.org>
* 30073 (plus comment): Src/Zle/zle_main.c: use queue_signals()
around critical first call to zrefresh() after zleactive = 1, to
prevent adjustwinsize() loop reported on FreeBSD.
2011-12-30 Frank Terbeck <ft@bewatermyfriend.org>
* 30048: Test/C02cond.ztst: Avoid [[ -N ... ]] on file-systems
mounted `noatime', if possible.
* 30046: Functions/VCS_Info/Backends/VCS_INFO_get_data_svn: Fix
support for subversion version 1.7.
2011-12-27 Barton E. Schaefer <schaefer@zsh.org>
* 30069: Doc/Zsh/options.yo: replace empty parens with
LPAR()RPAR().
2011-12-21 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 30041: Src/subst.c: the offset hack to make
${foo:offset:length} bash compatible with positional parameters
doesn't apply when we're indexing into characters of one
positional parameter.
* T.C. Hollingsworth: 30036: Completion/Unix/Command/_systemctl:
new arguments.
2011-12-20 Barton E. Schaefer <schaefer@zsh.org>
* 30033: Src/Zle/zle_keymap.c: silence valgrind warnings about
uninitialized values.
2011-12-19 Peter Stephenson <pws@csr.com>
* unposted: Config/version.mk: update version to 4.3.15-dev-0 to
avoid dev version clashing with installation.
2011-12-17 Peter Stephenson <p.w.stephenson@ntlworld.com>
* unposted: release 4.3.15.
2011-12-16 Peter Stephenson <pws@csr.com>
* Simon Olofsson: 30028: Completion/Unix/Command/_subversion:
fix matching of subversion help text.
2011-12-14 Mikael Magnusson <mikachu@gmail.com>
* 30021: Completion/Zsh/Type/_globquals: Add d flag (see 29991),
show what unit the digits are entered in as a hint that the
default is also days.
* 29783: Completion/Debian/Command/_update-alternatives: Add
more options.
2011-12-13 Mikael Magnusson <mikachu@gmail.com>
* 29998: Completion/Unix/Command/_git: fix a typo (--rerbose).
* 30019: Completion/Unix/Command/_tar: fix parsing of argument
to -C.
2011-12-13 Barton E. Schaefer <schaefer@zsh.org>
* 30020: Functions/Prompts/promptinit: prevent prompt_opts and
zle_highlight from leaking out of prompt_preview_theme.
* 30012: Completion/Base/Core/_main_complete,
Completion/Base/Utility/_arguments,
Completion/Base/Utility/_values, Completion/Zsh/Command/_zle,
Doc/Zsh/compsys.yo: add $state_descr which parallels the $state
array in the same way that $context does, to make the "message"
part of each _arguments "optarg" specification available to
the caller's state handler. Used in _zle as the description
passed to _wanted.
2011-12-12 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 30000 plus a couple of comments: Src/exec.c: Better POSIXJOBS
behaviour: don't restore default behaviour for SIGTTOU etc. if
we're still doing job handling, and only continue with job
handling if this is a (...) subshell.
2011-12-11 Peter Stephenson <p.w.stephenson@ntlworld.com>
* discussed in 29984: Doc/Zsh/compsys.yo: use m+7 for files
"more than a week old" since w+1 is a bit counterintuitive.
* 29991: Doc/Zsh/expn.yo, Src/glob.c: allow explicit 'd' for
days in time qualifiers.
2011-12-10 Mikael Magnusson <mikachu@gmail.com>
* 29962: Completion/Unix/Command/_ssh: Actually return ret.
* 29961: Completion/Unix/Command/_ssh: Extend option completion.
2011-12-10 Peter Stephenson <p.w.stephenson@ntlworld.com>
* GI: 29977: Completion/Linux/Command/_modutils: caching and
function definition fixes.
2011-12-09 Simon Ruderich <simon@ruderich.org>
* 29918: Completion: Add new _remote_files() helper and use it to
reduce code duplication.
* 29917: Completion/Unix/Command/_ssh: Tabs to spaces.
2011-12-09 Mikael Magnusson <mikachu@gmail.com>
* unposted: Doc/Zsh/compsys.yo: Remove duplicated 'the'.
* 29409: Completion/X/Command/_x_utils: Add completion for xprop and
xlsatoms.
2011-12-09 Peter Stephenson <pws@csr.com>
* unposted: Completion/compinit: add NO_ignoreclosebraces to
options needed in completion.
* users/16614: config.guess, config.sub: update from automake
1.11.1.
2011-12-09 Mikael Magnusson <mikachu@gmail.com>
* 29876: Completion/Unix/Command/_getent: Update getent completion
to work when additional output comes after the databases.
2011-12-08 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 29955 with bits pointed out by Mikael and Bart:
Doc/Zsh/grammar.yo, Doc/Zsh/options.yo, Src/lex.c,
Src/options.c, Src/zsh.h, Test/E01options.ztst: add
IGNORE_CLOSE_BRACES option.
2011-12-08 Peter Stephenson <pws@csr.com>
* 29928: Test/A04redirect.ztst: belated commit to
fix OpenBSD test failure.
2011-12-07 Peter Stephenson <p.w.stephenson@ntlworld.com>
* unposted: Etc/version.mk: update version to 4.3.14-dev-0 to
avoid installs clashing with release.
2011-12-07 Oliver Kiddle <okiddle@yahoo.co.uk>
* 29952: Src/glob.c: fix cut'n'paste error in nanosecond
timestamp support
2011-12-06 Peter Stephenson <p.w.stephenson@ntlworld.com>
* unposted: Config/version.mk: release 4.3.14.
2011-12-03 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 29940: Src/utils.c (metafy): null termination shouldn't
be applied to original buffer if not to be modified.
* From Stef VAN VLIERBERGHE: 29934: Src/lex.c (add): use of
uninitialised memory when lexer needed to reallocate token.
2011-12-02 Peter Stephenson <pws@csr.com>
* unposted: Test/B01cd.ztst: fix documentation for '*'
test output syntax.
2011-12-01 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 29924: Test/A04redirect.ztst, Test/B01cd.ztst, Test/ztst.zsh:
add ability to match output of tests using patterns.
2011-12-01 Peter Stephenson <pws@csr.com>
* unposted: Completion/Unix/Command/_nm: also complete
directories.
* 29923: Test/A04redirect.ztst: work around variant message from
strerror() for invalid file descriptor.
2011-11-30 Peter Stephenson <p.w.stephenson@ntlworld.com>
* Config/version.mk: 4.3.13 release.
2011-11-28 Peter Stephenson <pws@csr.com>
* Ismail Dönmez: 29920: Src/Subst.c: error with arithmetic
substitution with NO_EXEC.
2011-11-25 Peter Stephenson <p.w.stephenson@ntlworld.com>
* unposted: Config/version.mk: 4.3.12-test-3.
2011-11-24 Simon Ruderich <simon@ruderich.org>
* 29916: Completion/Unix/Command/_git: Prevent clash with
_remote_files() in _ssh.
2011-11-24 Peter Stephenson <pws@csr.com>
* 29915: Completion/Unix/Command/.distfiles,
Completion/Unix/Command/_nm: new nm completion.
2011-11-23 Peter Stephenson <pws@csr.com>
* Ignacy Gawędzki: 29912: Completion/Unix/Command/_ssh: add "--"
to end options to ls.
2011-11-21 Peter Stephenson <pws@csr.com>
* Foudil Brétel: 29911: add --no-legend support (v37+); multiple
bug fixes (aliases, array range); workaround compadd bug
(compadd handles its own options)
2011-11-20 Peter Stephenson <p.w.stephenson@ntlworld.com>
* gi1242+zsh: users/16587: Completion/Unix/Command_lp: tidy up.
2011-11-18 Peter Stephenson <pws@csr.com>
* 29908: Doc/Zsh/contrib.yo, Functions/MIME/.distfiles,
Functions/MIME/zsh-mime-contexts, Functions/MIME/zsh-mime-handler:
make MIME functions handle contexts with stacked suffixes such
as .pdf.gz.
2011-11-17 Peter Stephenson <pws@csr.com>
* Jun T.: 29907: Src/Modules/pcre.c: remove declaration of
unused variable.
2011-11-15 Barton E. Schaefer <schaefer@zsh.org>
* users/16581: Src/utils.c: it seems wrong to shortcut correction
of words not in command position by comparing them to the command
tables, so don't; if a command correction is rejected, reset the
incremental path hashing so the new command can be "learned".
2011-11-14 Peter Stephenson <pws@csr.com>
* gi1242: users/16578: Completion/Unix/Command/_lp: lpadmin,
lpinfo and other changes.
2011-11-09 Frank Terbeck <ft@bewatermyfriend.org>
* Akinori MUSHA: 29900:
Functions/VCS_Info/Backends/VCS_INFO_detect_svn: Adjust detection
to support subversion 1.7.
2011-11-08 Peter Stephenson <pws@csr.com>
* Haakon Riiser: 29895, 29887: Completion/Unix/Command/_ffmpeg,
Completion/Linux/Command/_nmcli (plus
Completion/Linux/Command/.distfiles): update and new
NetworkManager client completion.
2011-11-07 Simon Ruderich <simon@ruderich.org>
* 29893: Completion/Unix/Command/_ssh: Update (mostly) for 5.9.
2011-11-07 Peter Stephenson <pws@csr.com>
* 29894: Doc/Zsh/contrib.yo, Functions/Zle/replace-string:
display previous replacement and reuse if source string is empty.
2011-11-04 Peter Stephenson <pws@csr.com>
* 29892: Functions/Zle/read-from-minibuffer,
Functions/Zle/replace-string: fix regular expression
replacements right of the cursor; make save and restore
in read-from-minibuffer more automated.
* 29891: Doc/Zsh/zle.yo, Src/Zle/zle_thingy.c: allow "zle -lL"
with arguments to list in -L format.
2011-10-31 Peter Stephenson <pws@csr.com>
* Jun T: 29883: Src/Builtins/rlimits.c, Src/Modules/zftp.c: cast
to type in printf to work around cases where types aren't
properly distinguished.
2011-10-30 Peter Stephenson <p.w.stephenson@ntlworld.com>
* users/16547: Completion/Unix/Command/_perforce: quote
arguments with colon in from _describe.
2011-10-28 Peter Stephenson <pws@csr.com>
* Src/module.c (do_load_module): 29879: (via takimoto-j): Metafy
dlerror message to avoid corruption.
2011-10-26 Phil Pennock <pdpennock@users.sourceforge.net>
* 29867: Bart Schaefer: Test/V07pcre.ztst: exit early with
unimplemented status if zsh/pcre not available; combined with
Peter's 29865 fix, should make PCRE testing robust.
2011-10-26 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 29844, 29845: Src/exec.c, Test/A04redirect.ztst: remove bogus
error on closing fd's 0 to 9; update test.
2011-10-26 Peter Stephenson <pws@csr.com>
* 29865: Src/Modules/pcre.mdd: don't compile if no pcre-config.
* 29859: Src/Zle/Complete.c: compadd handles its own options.
2011-10-24 Peter Stephenson <pws@csr.com>
* Jérémie Roquet: c.f. users/16541: Doc/Zsh/cond.yo:
should be "filename generation", not "file generation".
* Foudil Brétel: 29842: Completion/Unix/Command/_systemctl:
major rewrite.
2011-10-24 Phil Pennock <pdpennock@users.sourceforge.net>
* 29838: Src/Modules/pcre.c: metafy/unmetafy strings, to
correctly handle non-ASCII characters in UTF-8 for regexp
matches.
* unposted: Test/V07pcre.ztst: some PCRE tests
2011-10-23 Peter Stephenson <p.w.stephenson@ntlworld.com>
* users/16492: MACHINES: OpenIndiana issue.
2011-10-22 Simon Ruderich <simon@ruderich.org>
* 29823: Completion/Unix/Command/_perl: Update for 5.14.1.
2011-10-19 Frank Terbeck <ft@bewatermyfriend.org>
* Suraj N. Kurapati: 29828: Misc/vcs_info-examples: Mention
different ways to handle remote branch names in
`vi-git-remotebranch()'.
2011-10-17 Peter Stephenson <pws@csr.com>
* unposted: NEWS, README, Config/version.mk, Etc/.distfiles,
Etc/FAQ.yo, Etc/relnote_4.3.12.txt: tidy up and update for
4.3.12-test-2.
* unposted: Completion/Unix/Command/_perforce: small
documentation update.
2011-10-14 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 29820: Doc/Zsh/compsys.yo,
Completion/Base/Utility/_pick_variant: -b option to match
builtins.
2011-10-12 Mikael Magnusson <mikachu@gmail.com>
* 29815: Doc/Makefile.in: include mod_langinfo in documentation.
2011-09-25 Barton E. Schaefer <schaefer@zsh.org>
* 29799: Src/utils.c: swap order of RESET_PROMPT / REFRESH in
adjustwinsize() so that the cursor is moved to the start of a
multi-line prompt before the prompt is actually displayed.
* 29769: Src/signals.c: handle thisjob == -1 (no foreground job)
when checking for whether a background job is allowed to suspend.
* unposted: Doc/Zsh/modules.yo: cross-reference zmodload.
2011-09-22 Peter Stephenson <pws@csr.com>
* Daniel Friesel: 29796: Completion/X/Command/_mplayer: complete
.webm.
2011-09-21 Peter Stephenson <pws@csr.com>
* Luka Perkov: 29788: Completion/Unix/Command/_quilt:
improved quilt completion.
2011-09-18 Peter Stephenson <p.w.stephenson@ntlworld.com>
* users/16375: Src/Zle/complist.c: initialise number of
references each time for multiple match tests when
highlighting.
2011-09-16 Mikael Magnusson <mikachu@gmail.com>
* 29764, 29765: Completion/Unix/Command/_pgrep: use _users and
_groups rather than reimplementing them, use _wanted instead
of plain compadd to get descriptions, return 0 on success,
fix conditions on -f and -x, complete pts/* for -t too.
2011-09-15 Peter Stephenson <pws@csr.com>
* 29776 (modified as noted): Src/lex.c, Test/D08cmdsubst.ztst:
double quotes are not special in double-quote-style parsing
if the end character is something else.
* 29773: Marco Hinz: Completion/Unix/Type/_perl_modules:
complete some missed modules.
2011-09-10 Clint Adams <clint@zsh.org>
* 29762: Completion/Debian/Command/_bts: bts completion tag
update from Ansgar Burchardt.
2011-09-10 Barton E. Schaefer <schaefer@zsh.org>
* 29760: Completion/compaudit: declare _i_ulwdirs and make sure
it is correctly referenced.
2011-09-07 Peter Stephenson <pws@csr.com>
* unposted: Completion/Unix/Command/_perforce: updates for
2010.2 release.
2011-09-07 Simon Ruderich <simon@ruderich.org>
* 29756: Doc/Zsh/params.yo: DIRSTACKSIZE is unlimited by default.
* 29757: Doc/Zsh/compsys.yo: Remove superfluous brace.
2011-09-07 Mikael Magnusson <mikachu@gmail.com>
* 29755: Completion/Unix/Command/_ssh: add -O stop to to _ssh.
2011-09-06 Mikael Magnusson <mikachu@gmail.com>
* 29736: Doc/Zsh/mod_zutil.yo: mention when zstyle -t returns 1.
* 29738: Completion/Unix/Command/_ssh: add PreferredAuthentications
completion.
* 29739: Completion/Unix/Command/_rsync: redefine _rsync(), make
-e accept cuddled arguments.
* 29740: Completion/Unix/Command/_wget: add --content-disposition.
* 29741: Completion/Zsh/Command/_zattr: add ret=0, fix filename
globbing like in 27658 for _zip.
* 29733: Jonathan Kolberg: Completion/Debian/Command/_apt: add
completion for apt-get changelog.
2011-09-05 Barton E. Schaefer <schaefer@zsh.org>
* users/16302: Completion/Unix/Type/_path_files: pattern matching
for plain files (e.g., *.pdf for xpdf completion) was broken by
29444. Hopefully this does not re-break directory patterns.
2011-08-30 Simon Ruderich <simon@ruderich.org>
* 29745: Mikael Magnusson: Completion/X/Command/_mplayer: fix -ss
completion.
2011-08-29 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 29744: Src/builtin.c: don't mess up non '-A' case in
29731.
2011-08-29 Barton E. Schaefer <schaefer@zsh.org>
* users/16291: Functions/Prompts/prompt_bart_setup: revert to
using history text in non-"fg" case to avoid alias expansion.
2011-08-29 Mikael Magnusson <mikachu@gmail.com>
* 29722: Completion/X/Command/_mplayer: escape colon.
* 29706: Completion/X/Command/_mplayer: add missing ret=0.
2011-08-28 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 29731: Src/builtin.c, Test/B04read.ztst: fix output from `read
-AE' and test that and `read -Ae'.
* users/16289: Doc/Zsh/expn.yo, Src/exec.c, Src/jobs.c: don't
delete temporary files when disowning and document this.
2011-08-20 Barton E. Schaefer <schaefer@zsh.org>
* unposted: Functions/Zle/.distfiles: add move-line-in-buffer
* 29711: Completion/compaudit: avoid calling potentially-slow
"getent group" unless group-writable directories are found.
2011-08-20 Nikolai Weibull <now@bitwi.se>
* 29707: Completion/Unix/Command/.distfiles,
Completion/Unix/Command/_ln: New _ln completer.
2011-08-18 Mikael Magnusson <mikachu@gmail.com>
* unposted: Completion/Linux/Command/.distfiles,
Completion/Linux/Command/_schedtool,
Completion/Zsh/Command/.distfiles,
Completion/Zsh/Command/_schedtool: move _schedtool completion
to correct directory.
* 29705: Completion/Unix/Command/_iconv: add correct number of
slashes when completing //TRANSLIT.
2011-08-17 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 29703: Src/exec.c, Src/subst.c, Test/D03procsubst.ztst:
* users/16253, users/16255: Src/utils.c, Test/D04parameter.ztst:
A nulstring should be split like an empty string.
* Anthony R Fletcher: users/16260:
Completion/Unix/Command/_systemctl: new completion.
2011-08-17 Nikolai Weibull <now@bitwi.se>
* 29698: Completion/Unix/Command/_git: Complete diff options for git
log.
2011-08-17 Mikael Magnusson <mikachu@gmail.com>
* 29681: Src/Zle/zle_refresh.c: consistently use [] to access
region_highlights.
* 29682: Completion/Zsh/Command/.distfiles,
Completion/Zsh/Command/_schedtool: new _schedtool completer.
* 29683: Completion/Unix/Command/_ssh: add -O forward to _ssh.
* Daniel Friesel: 29690: Completion/Linux/Command/_cryptsetup,
Completion/Unix/Command/_twidge: new _twidge and _cryptsetup
completers.
2011-08-16 Barton E. Schaefer <schaefer@zsh.org>
* 29694: Src/hist.c: Don't overwrite the current history word if
we aren't actually expanding an alias or history event.
* users/16251: Functions/Prompts/prompt_bart_setup: use a preexec
hook to replace "fg" et al. with the jobtext of the resumed job.
2011-08-16 Wayne Davison <wayned@users.sourceforge.net>
* 29650: Src/jobs.c: don't lose the the time info after a
suspend+restore.
2011-08-15 Peter Stephenson <p.w.stephenson@ntlworld.com>
* unposted: Src/Modules/datetime.c: use pm->node.nam to get
parameter names for errors.
2011-08-14 Mikael Magnusson <mikachu@gmail.com>
* 29673: Doc/Zsh/compsys.yo: clarify what 'other' in the
ignore-line style does.
* 28852: Misc/zargs, Zle/match-words-by-style: use syntax that
doesn't depend on SHORT_LOOPS being set.
* unposted: Src/hist.c: fix a typo in a comment.
* unposted: Src/jobs.c: fix capitalized word in the middle of
a sentence.
* 29388, 29680: Doc/Zsh/expn.yo: clarify note about e:string:
quoting.
* 29504: Doc/Zsh/expn.yo: note when (#cN,M) can't be used in
place of # or ##.
2011-08-14 Barton E. Schaefer <schaefer@zsh.org>
* 29677: Src/exec.c, Src/signals.c, Src/zsh.h: flag jobs that are
builtins running in the current shell, and if they control a
pipeline, do not allow the external processes in that pipeline to
become suspended when the foreground shell cannot suspend.
2011-08-11 Peter Stephenson <p.w.stephenson@ntlworld.com>
* Src/Modules/datetime.mdd: unposted: also fix the autofeatures.
* Src/params.c: unposted: Src/params.c, Test/V04features.ztst:
fix some tests I broke.
* Src/subst.c: 29674: Src/Modules/datetime.c,
Doc/Zsh/mod_datetime.yo: add $epochtime array.
2011-08-10 Peter Stephenson <pws@csr.com>
* 29663: configure.ac, Src/module.c, Src/Modules/datetime.c,
Doc/Zsh/mod_datetime.yo: add $EPOCHREALTIME for time in
double precision floating point.
2011-08-04 Peter Stephenson <pws@csr.com>
* 29643: Src/signals.c, Src/utils.c, Src/zle_main.c: set
incompfunc to zero when executing hook or trap function.
2011-08-09 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 29661: Doc/Zsh/redirect.yo: Improve the documentation for
{var}>... redirections.
2011-08-09 Barton E. Schaefer <schaefer@zsh.org>
* 29654: Src/jobs.c: "wait" should resume stopped jobs identified
by process ID as well as by job number.
* 29654: Src/exec.c: don't hide the job table entry for the left
side of a pipline that ends in a shell builtin. This change may
be backed out if the patch in 29660 can be improved.
2011-08-03 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 29644: Functions/Chpwd/zsh_directory_name_cdr,
Src/Zle/compcore.c, Src/Zle/zle_tricky.c: Work round a bug in
_describe, plus a new comment and some more braces.
* 29633: Doc/Zsh/func.yo, Src/parse.c, Test/C04funcdef.ztst: be
more careful that anonymous function syntax doesn't mess up
working syntax with other functions.
2011-08-03 Peter Stephenson <pws@csr.com>
* 29635: Completion/Base/Widget/_complete_debug: Improve file
descriptor handling and standardise syntax.
2011-07-29 Frank Terbeck <ft@bewatermyfriend.org>
* Luka Perkov: 29624: Completion/Unix/Command/_quilt: Improve
`push' and `pop' completion.
2011-07-28 Peter Stephenson <pws@csr.com>
* 29626: Src/parse.c, Test/C04funcdef.ztst: arguments to
anonymous functions shouldn't be parsed as command words.
* 29602 and subsequent changes: Doc/Zsh/expn.yo: clarify meaning
of filename extension in :r and :e modifiers (which were
slightly inconsistent).
2011-07-27 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 29561: Test/A04redirect.ztst: this bit didn't get committed,
somehow.
2011-07-27 Mikael Magnusson <mikachu@gmail.com>
* 29618: Completion/Linux/Command/_ethtool,
Completion/Zsh/Type/_file_descriptors: Fix some syntax to not depend
on SHORT_LOOPS being set.
2011-07-25 Peter Stephenson <pws@csr.com>
* 29561: Src/exec.c, Src/utils.c, Test/A04redirect.ztst: Allow
closing of file descriptors not recorded internally by the shell.
2011-07-22 Mikael Magnusson <mikachu@gmail.com>
* 29596: Completion/compinit: Fix syntax to work with KSH_ARRAYS
set.
2011-07-22 Nikolai Weibull <now@bitwi.se>
* unposted: Completion/Unix/Command/_git: Use _files, not _path_files.
* 29582: Completion/Unix/Command/_git: Alter the way that commands and
aliases are listed when both are requested.
* 29589: Completion/Unix/Command/_git,
Completion/Debian/Command/_git-buildpackage: Use #description instead
of #desc: for description of third-party commands. Also, refactor the
code to match the rest of the file.
2011-07-21 Nikolai Weibull <now@bitwi.se>
* 29272: Completion/Unix/Command/_git: Use return values correctly
accross all completion functions.