about summary refs log tree commit diff
path: root/ChangeLog
blob: 5e35ef94aa6654a92fdb2842587bb62068bfedcf (plain) (blame)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
2013-11-25  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* unposted: Completion/Unix/Command/.distfiles,
	Config/version.mk: update for 5.0.3-test-2.

2013-11-25  Barton E. Schaefer  <schaefer@zsh.org>

	* 32045 (as corrected by Martin Vaeth 32047): Config/defs.mk.in,
	Doc/Makefile.in, configure.ac: use dependencies to determine
	whether to rebuild helpfiles.

2013-11-23  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 32031 plus missed _run_help: Completion/Zsh/Command/_run-help,
	Config/defs.mk.in, Config/installfns.sh, Doc/Makefile.in,
	Functions/Misc/run-help, Makefile.in: turn @runhelpdir@ in
	installed functions into the actual installation path.

2013-11-20  Peter Stephenson  <p.stephenson@samsung.com>

	* 32030: revert 31995 as it caused (N) to fail on an empty
	failed glob.  Add test for this case.

2013-11-19  Barton E. Schaefer  <schaefer@zsh.org>

	* 32023: Src/utils.c: better interrupt handling at RM_STAR_WAIT

2013-11-18  Peter Stephenson  <p.stephenson@samsung.com>

	* unposted but see 32012: Doc/help/.cvsignore,
	Doc/help/.distfiles: were created in the wrong place, so move.

2013-11-18  Barton E. Schaefer  <schaefer@zsh.org>

	* 32008: Martin Vaeth: Completion/Zsh/Command/.distfiles
	Completion/Zsh/Command/_run-help Doc/Makefile.in: follow-up to
	31988 - complete "." and ":" for run-help, distribute _run-help,
	clean up better during make

	* 31995: Han Pingtian: Src/glob.c: glob	qualifiers cannot
	follow an empty pattern, so a leading paren means grouping

2013-11-17  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 32001: Src/subst.c: fix crash on empty arrays with array
	intersection and disjunction.

2013-11-15  Barton E. Schaefer  <schaefer@zsh.org>

	* Martin Vaeth: 31988: Doc/Makefile.in, Util/helpfiles: remove
	LC_CTYPE heuristics, assure clean environment, force LANG=C

2013-11-14  Peter Stephenson  <p.stephenson@samsung.com>

	* Jun T.: 31984: Completion/Unix/Command/_df: new completion.

	* 31983: Src/zsh.mdd: suppress warning from cmp that doesn't
	indicate a problem when generating patchlevel header.

	* 31982: Src/math.c, Test/C01arith.ztst: detection of floating
	point constants had run rampant in users/17445.  Fix the original
	problem another way.

2013-11-13  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31977: Src/module.c: no error if autoloading a feature that
	is already loaded in a consistent fashion.

	* Jun T.: 31971: locale fix for helpfiles.

	* Martin Vaeth: 31959: .gitignore, Doc/help/.cvsignore,
	Doc/help/.distfiles: missed files.

2013-11-12  Bart Schaefer  <schaefer@zsh.org>

	* 31966: Util/helpfiles: skip introductory paragraphs processing
	"man zshbuiltins" by assuming that all real command names start
	with a lower case letter.  Check "ztcp" file as a guess that all
	builtins were processed.

2013-11-12  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Martin Vaeth: 31959: .gitignore,
	Completion/Zsh/Command/_run-help, Doc/.cvsignore,
	Doc/.distfiles, Doc/Makefile.in, Makefile.in,
	StartupFiles/zshrc, Util/helpfiles, configure.ac: make help
	files during installation.

	* 31961: Src/Zle/zle.h, Src/Zle/zle_main.c,
	Src/Zle/zle_thingy.c: rationalise fd watch to use structures.

2013-11-08  Peter Stephenson  <p.stephenson@samsung.com>

	* unposted: fix ChangeLog to say 5.0.3 instead of 4.0.3.

	* unposted: NEWS: refer to zle -Fw.

	* 31940: Doc/Zsh/contrib.yo, Functions/Misc/zcalc: add -e option
	to zcalc to use input from arguments to command.

2013-11-07  Peter Stephenson  <p.stephenson@samsung.com>

	* 31937: Doc/Zsh/zle.yo, Src/Zle/zle_main.c,
	Src/Zle/zle_thingy.c, Src/Zle/zle_utils.c, Src/math.c,
	Test/C01arith.ztst: zle -Fw uses widget semantics for
	file descriptor handler.

2013-11-06  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* unposted: Completion/Debian/Command/.distfiles,
	Completion/Unix/Type/.distfiles, Config/version.mk, Etc/FAQ.yo,
	README, Src/pattern.c, Src/signals.c, Test/.distfiles: updates
	for 5.0.2-test-1 in preparation for 5.0.3.  Updated files
	in .distfiles and add mod_export declarations.

2013-11-03  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Stefan Neudorf: 31936: Doc/Zsh/builtins.yo,
	Src/Builtins/rlimits.awk, Src/Builtins/rlimits.c: rationalise
	thread limits

	* Stefan Neudorf: 31935: Doc/Zsh/builtins.yo,
	Src/Builtins/rlimits.awk, Src/Builtins/rlimits.c: further
	limit updates for 31930, 39134.

2013-10-31  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Stefan Neudorf: 31930 / 31934: Doc/Zsh/builtins.yo,
	Src/Builtins/rlimits.awk, Src/Builtins/rlimits.c, configure.ac,
	Src/Builtins/rlimits.c:  New BSD limits; avoid clash with
	ulimit -k.

2013-10-29  Barton E. Schaefer  <schaefer@zsh.org>

	* 31929: Src/jobs.c: fix DPUTS3() test condition from 31906.

2013-10-28  Bart Schaefer  <schaefer@zsh.org>

	* unposted: NEWS: mention HISTORY_IGNORE

2013-10-28  Peter Stephenson  <p.stephenson@samsung.com>

	* 31922: Src/Zle/zle_utils.c (zlecharasstring): missing
	flip of bit five when Meta marker inserted.

2013-10-27  Barton E. Schaefer  <schaefer@zsh.org>

	* 31912: Src/exec.c: in closemn(), distinguish closing for >&-
	from closing for a real redirect.  Fixes knock-on multios bug
	introduced by workers/20666 way back in 2005.

	* unposted (cf. users/18063): Functions/Zle/keeper: clean up
	some syntax nits, add working link to old Unix Review article

	* 31919: Src/exec.c, Src/init.c: fix deadlock when a shell builtin
	with a multio redirection is used on the left side of a pipeline,
	by making sure stdin/out/err file descriptors are closed for the
	multio copy process, which means not re-using those descriptors
	after they are closed and marked FDT_UNUSED in fdtable[].  For
	completeness, initialize their fdtable[] state to FDT_EXTERNAL.

2013-10-27  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31909: Jun T: Completion/Unix/Command/_cat: new completion.

2013-10-26  Barton E. Schaefer  <schaefer@zsh.org>

	* 31906: Src/jobs.c, Test/A05execution.ztst: printjob() should not
	reference oldjobtab for job numbers unless it is being called from
	bin_fg().  Add a DPUTS check in case this goes horribly wrong.
	printjob() also must not attempt to update pipestats when called
	from bin_fg().  Finally, acquire_pgrp() cannot acquire the tty
	group leader if the shell is not interactive, so avoid looping
	infinitely in the attempt.  Update the $pipestatus stress test so
	that it also exercises the oldjobtab repair.

2013-10-26  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Jun T: 31902: rationalise gamma function in mathfunc for
	consistency with various libraries and user expectations.

2013-10-25  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31890 (with Mikael's fixes in 31891): NEWS: add descriptions
	of new features since 5.0.2.

2013-10-24  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31889: Test/D02glob.ztst: tests for disable -p.

	* 31877: Src/pattern.c: fix behaviour of disable -p for
	entities with parentheses.

2013-10-24  Barton E. Schaefer  <schaefer@zsh.org>

	* 31885: Src/jobs.c: fix PIPEFAIL behavior when the last command
	in a pipeline is executed within the current shell; add comments

2013-10-24  Peter Stephenson  <p.stephenson@samsung.com>

	* 31888: Test/A05execution.ztst: add test of pipestatus
	that was reliably failing before 31879.

	* 31882: Src/Zle/compcore.c: better insulation of
	completion widget excecution against job environment.

	* 31884: Test/A05execution.ztst: eliminate variable output
	from test due to vagaries of uniq implementation.

2013-10-23  Barton E. Schaefer  <schaefer@zsh.org>

	* 31879: Src/jobs.c: improve $pipestatus behavior when the last
	command in the pipeline is executed within the current shell

	* unposted (cf. Frank Terbeck: 30047): Test/A05redirect.ztst:
	stress test for $pipestatus handling

2013-10-23  Peter Stephenson  <p.stephenson@samsung.com>

	* 31873: Doc/Zsh/builtins.yo: Document conventions for use of
	command options with builtin commands.

2013-10-21  Barton E. Schaefer  <schaefer@zsh.org>

	* 31869: Src/input.c: reduce WINCH-twaddling in shingetline()

2013-10-21  Øystein Walle  <oystwa@gmail.com>

	* 31861: Completion/Unix/Command/_git: _git: Add git-clean
	-i/--interactive support

	* 31863: Completion/Unix/Command/_git: _git: Add new arguments
	introduced in Git v1.8.4

	* 31862: Completion/Unix/Command/_git: _git: Add status.short and
	status.branch

	* 31866: Completion/Unix/Command/_git: _git: Reword --heads to
	match new meaning

	* 31864: Completion/Unix/Command/_git: _git: Add two sub-comamnds
	introduced in v1.8.4

	* 31865: Completion/Unix/Command/_git: _git: Make --batch(-check)
	accept an argument

2013-10-21  m0viefreak  <m0viefreak.cm@googlemail.com>

	* 31856: Completion/Unix/Command/_git: _git: fix a few
	"undocumented" options

	* 31855: Completion/Unix/Command/_git: _git: revert: add
	'-e,--edit'

2013-10-21  Øystein Walle  <oystwa@gmail.com>

	* 31858: Completion/Unix/Command/_git: _git: fix wrong default
	value

2013-10-21  m0viefreak  <m0viefreak.cm@googlemail.com>

	* 31857: Completion/Unix/Command/_git: _git: Remove unsupported -q
	option from diff options

2013-10-21  Øystein Walle  <oystwa@gmail.com>

	* 31853: Completion/Unix/Command/_git: _git: Add missing column.*
	config variables

	* 31854: Completion/Unix/Command/_git: _git: Make git-show accept
	diff arguments

	* 31859: Completion/Unix/Command/_git: _git: re-order the last two
	git-blame arguments

2013-10-19  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31851: Src/exec.c: execstring() should display string to
	be executed with VERBOSE option.

2013-10-19  Barton E. Schaefer  <schaefer@zsh.org>

	* 31849: Doc/Zsh/params.yo: note effect of KSH_ZERO_SUBSCRIPT
	on the arrays of positional parameters e.g. ${argv[0]} vs. $0

2013-10-18  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31846: Src/exec.c: fix NOEXEC option in execsimple().

2013-10-18  Barton E. Schaefer  <schaefer@zsh.org>

	* 31840: Completion/Unix/Command/_make: "read" used wrong $IFS

2013-10-17  Barton E. Schaefer  <schaefer@zsh.org>

	* 31836 (cf. 31823): Doc/Zsh/params.yo, Src/hist.c: add
	HISTORY_IGNORE pattern to exclude matching lines in the
	internal history from the HISTFILE at write time.

	* 31832: Src/exec.c: make execrestore() more signal-safe.

2013-10-17  Peter Stephenson  <p.stephenson@samsung.com>

	* 31830: Doc/Zsh/func.yo, README, Src/hist.c, Src/zsh.h:
	If a zshaddhistory hook returns status 2, save the line on
	the internal history but don't write it out.

2013-10-16  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Users/18033: Doc/Zsh/builtins.yo, Doc/Zsh/jobs.yo,
	Doc/Zsh/options.yo: try to document interaction between exit and
	asynchronous jobs that don't look asynchronous.

2013-10-16  Peter Stephenson  <p.stephenson@samsung.com>

	* 31827: Doc/Zsh/func.yo: options needed for example.  Only
	works with INCAPPENDHISTORY or SHAREHISTORY.

2013-10-15  Peter Stephenson  <p.stephenson@samsung.com>

	* unposted: Doc/Zsh/func.yo: trivial typo in zshaddhistory doc.

2013-10-12  Barton E. Schaefer  <schaefer@zsh.org>

	* 31818: Completion/Unix/Command/_sh, Doc/Zsh/compsys.yo: to avoid
	side effects, reposition the _arguments call in _sh for the zsh
	special case.  Document the side effects so avoided, and clean up
	the _arguments documentation a bit along the way.

2013-10-11  Mikael Magnusson  <mikachu@gmail.com>

	* 31805: Doc/Zsh/mod_parameter.yo, Src/Modules/parameter.c,
	Src/Modules/parameter.mdd, Src/pattern.c, Test/V01zmodload.ztst:
	Add $patchars and $dis_patchars to zsh/parameter module

	* 31805: Completion/Zsh/Command/_disable,
	Completion/Zsh/Command/_enable, Doc/Zsh/builtins.yo: Update
	_enable and _disable for -p, fix related typo in docs

	* 31806: Completion/Zsh/Command/_disable,
	Completion/Zsh/Command/_enable, Workaround special characters
	in alias and function names breaking _arguments syntax

2013-10-11  Peter Stephenson  <p.stephenson@samsung.com>

	* 31815: Src/hist.c: more fallout from 31789: we need to save
	using pushed history file before we pop.

2013-10-10  Peter Stephenson  <p.stephenson@samsung.com>

	* 31810: Test/E02xtrace.ztst: tests for simple cases of XTRACE
	output for conditions.

	* 31809: Src/exec.c: make whitespace clear in trace output for
	patterns.

2013-10-08  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Eric Cook: 31801: Completion/Linux/Command/_btrfs: some
	additional variables need to be local.

2013-10-08  Barton E. Schaefer  <schaefer@zsh.org>

	* 31797: Src/hist.c: partly fix long-standing history expansion
	bug in which in some circumstances a default history expansion
	would occur even when there is neither an event nor a word
	designator, which is contradictory to the documentation.
	There are still some cases in which expansion is attempted
	when it should not be, but in most of those cases the expansion
	simply fails.

2013-10-07  Peter Stephenson  <p.stephenson@samsung.com>

	* 31794: Src/hist.c: further refinement that SHAREHISTORY should
	work as it always did because it's careful about file locking.

	* 31793: Src/hist.c (hbegin): Modify 31789 so that the save
	history here only happens for interactive editing.

2013-10-06  Wayne Davison  <wayned@users.sourceforge.net>

	* users/18024: Completion/Unix/Command/_rsync: add new options for
	rsync 3.1.0.

2013-10-06  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* users/18023: Doc/Zsh/options.yo, Src/jobs.c, Src/options.c,
	Src/zsh.h, Test/E01options.ztst: add PIPEFAIL option and test.

2013-10-05  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Hang Pingtian: 31789: Src/hist.c: add history for
	INCAPPENDHISTORY later so history time works.

2013-10-03  Barton E. Schaefer  <schaefer@zsh.org>

	* 31784: Src/Zle/computil.c: when deciding whether there is enough
	horizontal space to show completion descriptions for each match in
	a listing, treat the separator as part of the description rather
	than as part of the match, and account for lines that have already
	wrapped due to very long matches.

	* 31781: Src/Zle/computil.c: "compdescribe -i" must clear the
	completion list column padding width along with the rest of the
	description state.  Cf. 31782.

2013-09-26  Barton E. Schaefer  <schaefer@zsh.org>

	* 31772: Src/params.c: queue_signals() to prevent re-entry into
	endparamscope().

	* 31770: Src/hist.c: memmove() instead of memcpy() for overlapping
	regions.

2013-09-25  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31765: Src/Zle/zle_main.c: on entry to editor, if starting in
	vi insert mode mark this as the start of an insertion (duh).

2013-09-23  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31764 (with correction of sense of a test): Src/glob.c,
	Src/pattern.c: use of array before initialisation wreaked havoc
	in detecting glob qualifiers.

2013-09-22  m0viefreak  <m0viefreak.cm@googlemail.com>

	* 31754: Completion/Unix/Command/_git: _git: git rm: make git rm
	--cached work as intended

2013-09-22  Øystein Walle  <oystwa@gmail.com>

	* 31752: Completion/Unix/Command/_git: _git: change completion
	text for consistency

2013-09-22  m0viefreak  <m0viefreak.cm@googlemail.com>

	* 31753: Completion/Unix/Command/_git: _git: correct some
	"undocumented" options

2013-09-22  Øystein Walle  <oystwa@gmail.com>

	* 31749: Completion/Unix/Command/_git: _git: fix some typos in
	description texts

	* 31751: Completion/Unix/Command/_git: _git: remove TODOs of
	actually documented options

2013-09-22  m0viefreak  <m0viefreak.cm@googlemail.com>

	* 31746: Completion/Unix/Command/_git: _git: reword _git-config
	TODO

	* 31748: Completion/Unix/Command/_git: _git: support completing
	remote branches without <remote>/ prefix

2013-09-22  Øystein Walle  <oystwa@gmail.com>

	* 31747: Completion/Unix/Command/_git: _git: completion updates to
	match latest git v1.8.3 part 2

	* 31750: Completion/Unix/Command/_git: _git: add new configuration
	options to match latest git v1.8.3

2013-09-22  m0viefreak  <m0viefreak.cm@googlemail.com>

	* 31741: Completion/Unix/Command/_git: _git: fix a wrong variable
	in __git_config_values

	* 31743: Completion/Unix/Command/_git: _git: fix usage of ->int:
	for some entries in _git-config

	* 31744: Completion/Unix/Command/_git: _git: make git submodule
	<cmd> completion work

	* 31745: Completion/Unix/Command/_git: _git: correctly use
	__git_guard_number in some cases

	* 31755: Completion/Unix/Command/_git: _git: completion updates to
	match latest git v1.8.3

2013-09-21  Barton E. Schaefer  <schaefer@zsh.org>

	* unposted: Src/glob.c: improve an error message.

2013-09-19  Barton E. Schaefer  <schaefer@zsh.org>

	* 31737: Src/Zle/computil.c (get_cadef): same fix as get_cvdef.

2013-09-19  Peter Stephenson  <p.stephenson@samsung.com>

	* Axel Beckert: 31735: Src/Zle/computil.c (get_cvdef):
	off-by-one in obscure loop handling could cause crash in complex
	completion.

2013-09-14  Luka Perkov  <luka@openwrt.org>

	* 31723: Completion/Unix/Command/_systemd: _systemd: add more
	system commands

	* 31726: Completion/Unix/Command/_git: _git: add few more
	arguments for cherry-pick and revert

2013-09-10  Barton E. Schaefer  <schaefer@zsh.org>

	* 31714: Completion/Zsh/Command/_cd: handle ".." properly when
	$PWD or the path prefix traverses a symbolic link.

2013-09-08  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31711: Doc/Zsh/contrib.yo, Functions/MIME/zsh-mime-handler:
	add execute-never style for MIME handler for files on alien file
	systems.

2013-09-07  Luka Perkov  <luka@openwrt.org>

	* 31708: Completion/Unix/Command/_git: _git: add --fixup and
	--squash options to commit

2013-09-06  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Luka Perkov: 31702: Completion/Unix/Command/_git:
	check for presence of "-i" when checking for "--interactive".

	* 31706: Src/builtin.c, Test/C02cond.ztst: standardise
	handling of "test ! <x> <y> <z>".

2013-09-04  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31696: Src/parse.c, Test/C02cond.ztst: in "test", no one
	can hear if you shriek.  Treat exclamation marks as strings in
	"! -a ..." and "! -o ...".

2013-09-02  Peter Stephenson  <p.stephenson@samsung.com>

	* 31685: Doc/Zsh/mod_mapfile.yo: documentation of how to get
	lines from a file is not correct.

2013-08-29  Peter Stephenson  <p.stephenson@samsung.com>

	* users/17955: Doc/Zsh/contrib.yo,
	Functions/MIME/zsh-mime-handler: "disown" style makes MIME
	handlers put into background run without job control.

	* based on 31641, 31642: Completion/Unix/Command/_make: support
	a couple of different variants of make.

2013-08-26  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31672: Src/Modules/zpty.c, Test/V08zpty.ztst: add test that
	was failing and fix race when setting up pty.

2013-08-25  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31665: Src/Modules/zpty.c, Test/V08zpty.ztst, Test/.distfiles:
	zpty should attach terminal on slave.

2013-08-17  Barton E. Schaefer  <schaefer@zsh.org>

	* 31637: Src/builtin.c: change of directory should not be retried
	relative to the current directory when it has already failed along
	some path that does not refer to the current directory.

2013-08-11  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31650: Src/utils.c: use zlong for mailcheck parameters to
	ensure sufficient range.

2013-08-10  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31648: joe M: Src/utils.c: fix timing errors in mailcheck.

2013-08-08  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Src/Zle/zle_tricky.c (inststrlen): 31644: the wrong length was
	used when inserting multibyte characters from a string from
	outside ZLE into the editing buffer.

	* users/17908: Src/hist.c Src/Zle/zle_main.c Src/zsh.h: if
	modifying history with ZLE active, keep the history line
	recorded in ZLE in sync.

2013-08-07  Phil Pennock  <pdpennock@users.sourceforge.net>

	* 31634: Functions/Misc/run-help: run-help compat with alias to
	noglob/nocorrect

2013-08-05  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31631: configure.ac, Src/builtin.c: use cygwin_conv_path in
	preference to cygwin_conv_to_posix_path if available.

2013-08-04  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Yuusuke Yoshimoto: 31632: Completion/Unix/Type/_java_class:
	suppress stderr from jar when completing classes.

2013-08-02  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31611: Src/Zle/zle_tricky.c: attempt to fix crash in
	"for in 1; do <[TAB] x".

2013-08-01  Peter Stephenson  <p.stephenson@samsung.com>

	* Thomas Klausner: 31625: Completion/X/Command/_mplayer: mplayer
	supports .ts (transport stream) files.

2013-07-29  Peter Stephenson  <p.stephenson@samsung.com>

	* 17891: Src/builtin.c: fix error message for invalid file
	descriptor in "print -u".

2013-07-28  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Manuel Presnitz: 31592 (with minor changes of phrasing):
	Doc/Zsh/builtins.yo, Doc/Zsh/expn.yo, Doc/Zsh/prompt.yo: improve
	documentation for named directory handling.

2013-07-25  Peter Stephenson  <p.stephenson@samsung.com>

	* Jun T.: 31756: Completion/Unix/Command/_make: further make
	completion improvements: tke care of mutually exclusive options;
	add _description using $state_descr; add completions for
	--debug=flag; fix typo (pointed out by Daniel Shahaf).

	* 31574: Src/parse.c: alternative fix to 31545 if FD_CLOEXEC is
	not available, removing dump records more consistently.

2013-07-24  Richard Hartmann  <richih.mailinglist@gmail.com>

	* 31571: Completion/Unix/Command/_vcsh: Update

	* 31572: Completion/Debian/Command/_linda,
	Completion/Debian/Command/.distfiles: Remove _linda

2013-07-24  Peter Stephenson  <p.stephenson@samsung.com>

	* Src/hist.c: 31570: with HIST_REDUCE_BLANKS don't truncate
	the line after the last word if there's more non-white-space
	text (probably a comment but we don't assume that).

2013-07-22  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* unposted: Src/lex.c: correct previous commit: should call
	hwend(), not ihwend().

	* 31559: Src/lex.c: Fix problem with history lines for comments
	that occur in the middle of an alias.

	* Eric Cook: 31558: Completion/Command/Unix/_qemu: name of
	binary has changed.

2013-07-21  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31549: Src/exec,c, Src/zsh.h: replace ad-hoc subsh_close file
	descriptor for pipes with new addfilelist() job-based mechanism.

2013-07-20  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31545: Src/exec.c, Src/parse.c: if FD_CLOEXEC is available,
	so mark dump file file descriptors, avoiding possible
	multiple use of file descriptors.

2013-07-19  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* c.f. 31531: Completion/Unix/Command/_imagemagick,
	Completion/Unix/Command/_graphicsmagick: complete .xcf files.

2013-07-19  Peter Stephenson  <p.stephenson@samsung.com>

	* 31536 (plus memory leak fixed, plus test code):
	Src/jobs.c, Test/D03procsubst.ztst: fix hang in 31528 by
	closing process substitution file descriptors when waiting
	for job to finish.

2013-07-17  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31528: Src/exec.c, Src/jobs.c, Src/zsh.h: use job table
	to record file descriptors associated with process
	substitution.

	* Jun T: 31525: Completion/Unix/Command/_make: fix some option
	handling.

2013-07-12  Peter Stephenson  <p.stephenson@samsung.com>

	* Nick Cross: 31512: Completion/Unix/Command/_make:
	extra GNU options plus fix to makefile completion.

2013-07-11  Peter Stephenson  <p.stephenson@samsung.com>

	* users/17856: Completion/Command/Unix/_make: rewrite to use
	_arguments so as to make adding option handling easier.

2013-07-03  Peter Stephenson  <p.stephenson@samsung.com>

	* 31503: Doc/Zsh/contrib.yo, Functions/Misc/zmv: split words
	in program passed to zmv with -p and add -P for programs
	that don't understand the "--" convention.

2013-06-28  Clint Adams  <clint@zsh.org>

	* 31500: Completion/Debian/Command/_dput: dput-ng completion
	support from Sebastian Ramacher.

	* 31499: Completion/Debian/Command/_dcut: dcut completion
	from Sebastian Ramacher.

	* 31498: Completion/Debian/Command/_dak: complete files for
	subcommands that are not explicitly specified.

2013-06-27  Mikael Magnusson  <mikachu@gmail.com>

	* 31483: Call zrefresh() before unqueue()ing signals, was
	moved in 31174.

2013-06-18  Frank Terbeck  <ft@bewatermyfriend.org>

	* 31485: Functions/VCS_Info/Backends/VCS_INFO_get_data_git:
	vcs_info, git: Avoid error messages for `guilt' users

2013-06-13  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31465: Completion/compinit, Src/glob.c, Src/pattern.c: fix
	basic completion and globbing use of pattern disables.

	* 31444: Doc/Zsh/builtins.yo, Doc/Zsh/options.yo,
	Doc/zmacros.yo, Src/builtin.c, Src/exec.c, Src/options.c,
	Src/pattern.c, Src/zsh.h: Basic (not fully functional) code for
	enable/disable -p.

2013-06-13  Barton E. Schaefer  <schaefer@zsh.org>

	* 31474: Makefile.in, Src/zsh.mdd: create patchlevel.h correctly
	when running make in a separate build tree

2013-06-10  Peter Stephenson  <p.stephenson@samsung.com>

	* Hong Xu: 31462: .editorconfig: move comment to individual
	line.

	* Bruce Stephens (via Axel Beckert of Debian): 31459:
	Doc/ztexi.yo: alignment of zsh info menu entry is wrong.

2013-06-09  Barton E. Schaefer  <schaefer@zsh.org>

	* 31466: .cvsignore, .gitignore: Cause git and cvs to ignore
	one another.

	* 31205: Completion/Base/Widget/_complete_help:  Do not display
	"(eval)" as a tag context.

2013-06-01  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31441: Src/glob.c, Src/pattern.c, Src/zsh.h: use an array
	based on ZPC_* enum to decide which forms of pattern are enabled.

2013-05-30  Peter Stephenson  <p.stephenson@samsung.com>

	* 31436: Doc/Zsh/expn.yo: KSH_GLOB syntax does not
	support recursive directories.

2013-05-29  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31433: Completion/Unix/Command/_gzip: zcat -f doesn't
	need files with suffix .gz.

	* 31422: Doc/Zsh/calsys.yo, Functions/Calendar/age: better
	heuristic for timestamps in use of :file feature.

2013-05-22  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31405: Doc/Zsh/options.yo: weasel words about
	PRINT_EXIT_STATUS option.

2013-05-21  Peter Stephenson  <p.stephenson@samsung.com>

	* 31419: Src/Modules/stat.c: Add time zone and year to
	default time format with -s option to zstat.

	* 31418: Doc/Zsh/calsys.yo, Functions/Calendar/age:
	in "age" docs correct typo and note the feature that
	you can supply a file as a timestamp on the command line.

	* Stephane: 31417: Functions/Calendar/age: needs --
	to protect againts files starting with -.

2013-05-20  Barton Schaefer  <schaefer@zsh.org>

	* 31416: Src/builtin.c: upon "read" of a short line, assign all
	variables passed as arguments.

2013-05-14  Peter Stephenson  <p.stephenson@samsung.com>

	* unposted: Completion/Unix/Command/_perforce: Improve
	Perforce jobs completion to limit potentially huge output
	using jobview by default; fix quoting of arguments passed on
	to eval within _call_program.

2013-05-10  Peter Stephenson  <p.stephenson@samsung.com>

	* Richard Hartmann <richih.mailinglist@gmail.com>: 31389:
	Completion/X/Command/_mplayer: add .ogv.

	* Mihai Moldovan <ionic@ionic.de>: 31387: Src/zsh_system.h:
	unused functions when compiling with clang.

2013-05-05  Frank Terbeck  <ft@bewatermyfriend.org>

	* unposted: Src/exec.c: Revert "31372: Do not block SIGWINCH for
	child processes" as suggested by Bart.

	* 31376: Src/exec.c: Make sure every execve() is prefixed by
	winch_unblock()

2013-05-05  Bart Schaefer  <schaefer@zsh.org>

	* 31372: Src/exec.c: Do not block SIGWINCH for child processes

2013-05-05  Kenyon Ralph  <kenyon@kenyonralph.com>

	* 31371: Completion/Linux/Command/_brctl: _brctl: update brctl
	subcommands

2013-05-04  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31369: Completion/Base/Utility/_comp_locale: action if locale
	command is not usable.

2013-04-29  Bart Schaefer  <schaefer@zsh.org>

	* 31361: Src/init.c: handle negative optno ("no" prefix used)
	when storing options with parseopts_insert() for sticky contexts

	* 31353: Src/math.c: fix handling of floating point in ternary

	* 31350: Src/init.c, Src/input.c, Src/signals.h, Src/utils.c,
	Src/Zle/zle_main.c: block SIGWINCH nearly all the time, except
	when about to calculate prompts or do synchronous read, so
	syscalls are not interrupted by window size changes.

2013-04-29  Jun T  <takimoto-j@kba.biglobe.ne.jp>

	* 31357: Completion/Unix/Command/_cp: add support for Mac OS X

2013-04-29  Peter Stephenson  <p.stephenson@samsung.com>

	* 31356: Completion/Unix/Command/_subversion: typo noted by Bart.

	* 31355: Completion/Base/Utility/.distfiles,
	Completion/Base/Utility/_comp_locale,
	Completion/Unix/Command/_subversion: _comp_locale tries to
	sanitise locales but keep CTYPE; use this for subversion completion.

2013-04-25  Ramkumar Ramachandra  <artagnon@gmail.com>

	* 31288: Completion/Unix/Command/_git: _git: fix shortlog
	completer

2013-04-21  Ramkumar Ramachandra  <artagnon@gmail.com>

	* 31286: Completion/Unix/Command/_git: _git: add a couple of
	browsers

	* 31289: Completion/Unix/Command/_git: _git: branch.*.pushremote,
	remote.pushdefault

2013-04-20  Torstein Hegge  <hegge@resisty.net>

	* 31159: Completion/Unix/Command/_git: git: Pass prefix filter to
	ls-files even if it matches no files

2013-04-20  Jun T  <takimoto-j@kba.biglobe.ne.jp>

	* 31281: Completion/Unix/Command/_du: _du: add support for Mac OS
	X

2013-04-20  Bart Schaefer  <schaefer@zsh.org>

	* 31272: Src/Zle/compctl.c: avoid double free.

2013-04-16  Peter Stephenson  <p.stephenson@samsung.com>

	* Daniel Friesel: 31265: Completion/Unix/Command/_devtodo:
	improved option handling.

2013-04-13  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* unposted: .gitignore: ignore PDF and PS versions of intro file.

2013-04-12  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31263 (changed * to - for consistency with elsewhere):
	Doc/Zsh/mod_curses.yo: suppress texinfo warning by adding item
	arguments.

	* 31261: Doc/Zsh/compsys.yo, Doc/ztexi.yo: updates needed
	with latest texinfo.

2013-04-10  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* users/17754: Src/builtin.c: failing to retie an array
	and colon-separated scalar shouldn't be a fatal error.

2013-04-09  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31246: Makefile.in, Src/zsh.mdd: make a separate patch level
	header for releases.

2013-04-08  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* unposted: Completion/Unix/Command/.distfiles,
	Completion/Unix/Command/.distfiles: remove mention of files no
	longer there.

2013-04-07  Bart Schaefer  <schaefer@zsh.org>

	* 31234: Completion/Base/Widget/_complete_help: use an "always"
	block instead of "trap" to clean up various function overrides

2013-04-05  Frank Terbeck  <ft@bewatermyfriend.org>

	* 31174: Src/Zle/zle_main.c: 31174: zle: Make sure state changes
	are refreshed after init hook

	* 31172: Src/Zle/zle_main.c: 31172: Let vared define custom init
	and finish hooks

	* 31175: Doc/Zsh/zle.yo: 31175: Add documentation for the new -i
	and -f options of vared

	* 31221: Completion/Unix/Command/_git: Handle zero defined aliases
	better

	* 31222: Functions/Zle/down-line-or-beginning-search,
	Functions/Zle/up-line-or-beginning-search: Don't trigger
	warn_create_global

2013-04-04  Peter Stephenson  <p.stephenson@samsung.com>

	* 31203: Completion/Unix/Command/.distfiles,
	Completion/Unix/Command/_etags: new etags completion.

2013-02-18  Aaron Schrab  <aaron@schrab.com>

	* 07478c6b: Src/zsh.mdd: Generate patch level using `git describe`

2013-04-02  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Jun T.: 31183: Src/Zle/zle_move.c: record old line rather than
	history line in vi-goto-mark.

2013-03-29  Mikael Magnusson  <mikachu@gmail.com>

	* 31182: Completion/Unix/Command/_awk: Allow sticked arguments.

2013-03-20  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Han Pingtian: 31167 (with tweak):
	Completion/Unix/Command/_ssh: limit use of colons for detecting
	a remote path.

2013-03-19  Bart Schaefer  <schaefer@zsh.org>

	* 31158: Src/pattern.c: following a wildcard with a repetition
	produces a bad pattern error instead of an unbounded search

2013-03-17  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31156: Completion/Zsh/Context/_math,
	Completion/Zsh/Context/_zcalc_line, Completion/Zsh/Type/.distfile,
	Completion/Zsh/Type/_math_params,
	Completion/Zsh/Type/_module_math_func,
	Completion/Zsh/Type/_user_math_func: improved math context
	completion: functions.

	* 31155: Doc/Zsh/contrib.yo, Functions/Misc/zcalc: minor
        extra zcalc features and documentation.

2013-03-15  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31154: Doc/Zsh/contrib.yo, Functions/Misc/zcalc: make zcalc
	understand continuation lines using backslash.

2013-03-14  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31151: Pavol Juhas: complete (C etc) tags better
	when file system is not case sensitive.

2013-03-13  Mikael Magnusson  <mikachu@gmail.com>

	* unposted: Doc/Zsh/contrib.yo: Also adjust a mention of psvar
	in the vcs info documentation.

	* 31140: Src/math.c: when the math recursion limit is hit, make
	sure to not leave *ep pointing nowhere, which caused a crash
	sometimes. Also print the token that we refused to evaluate
	because of the limit.

2013-03-13  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* unposted, c.f. thread from 31144: Doc/Zsh/params.yo: all psvar
	entries can be shown in prompts nowadays.

2013-03-10  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31141: Src/exec.c, Test/A04redirect.ztst: NO_CLOBBER for {fd}
	syntax should only apply if $fd is exactly an fd and nothing
	else.

2013-03-10  Mikael Magnusson  <mikachu@gmail.com>

	* 30496: Src/prompt.c: Parse argument to %F and %K as prompt
	sequences. This allows constructs like %F{%3v} to use $psvar[3]
	for the color.

	* 30490: Completion/Unix/Command/_java: Complete files for the
	-keystore argument.

	* 30639: Functions/VCS_Info/Backends/VCS_INFO_get_data_git:
	Add support for showing the current action is cherry-pick (happens
	when cherry-picking a range).

	* 31136: Functions/VCS_Info/Backends/VCS_INFO_get_data_git:
	just set parameters instead of passing over a pipe.

2013-03-05  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* users/17666: Doc/Zsh/contrib.yo, Functions/Misc/zcalc: -f
	option to zcalc sets FORCE_FLOAT.

	* users/17665: Doc/Zsh/options.yo, Src/math.c, Src/options.c,
	Src/zsh.h, Test/C01arith.ztst: add FORCE_FLOAT option.

2013-02-27  Oliver Kiddle <opk@zsh.org>

	* 31076: Completion/Linux/Command/_yast,
	Completion/Unix/Type/_pids, Completion/Unix/Type/_pdf:
	fix cases of more than one completion function for a command

	* 31077: Completion/Unix/Command/_sort: update for new
	options in GNU sort

	* c.f. 31071: Completion/Unix/Type/_postscript,
	Completion/Unix/Command/_psutils: remove duplicate _osc and
	rename _ps to avoid name clash

2013-02-22  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31061: Completion/Zsh/Command/_typeset: "functions" completion
	takes account of options already on the command line.

	* 31060: Src/builtin.c: "+" before a flag for "functions" or
	"autoload" should suppress display of function body.

2013-02-21  Oliver Kiddle <opk@zsh.org>

	* 31058: Completion/Zsh/Command/_fc, Completion/Unix/Command/_cut,
	Completion/Unix/Command/_sed, Completion/Unix/Command/_wget,
	Completion/Unix/Command/_xmlsoft: add options from newer
	versions of some commands to completion functions

2013-02-19  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31055: Completion/compaudit: missing '$' in search of /proc
	file system.

2013-02-12  Oliver Kiddle <opk@zsh.org>

	* 31041: Test/comptest, Test/X02zlevi.ztst: add support for
	testing line editor widgets from the test suite

	* unposted: Etc/zsh-development-guide: remove duplication in
	git guidelines

2013-02-09  Oliver Kiddle <opk@zsh.org>

	* Morita Sho: 31038: Completion/Unix/Type/_terminals:
	add location of terminfo entries on Debian

	* 31037: Src/Zle/zle_move.c: return to previous position
	with vi-goto-mark using `` or ''

2013-02-07  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	*  Wieland Hoffmann: 31030: Completion/X/Command/_mplayer:
	improve label for selected files.

	*  Wieland Hoffmann: 31029: README: correct directory.

	* Han Pingtian: 31027: Completion/Unix/Type/_files: remove
	the -g's from the glob options.

2013-02-03  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Eric P. Mangold: c.f. 31016
	http://twistedmatrix.com/trac/browser/trunk/twisted/python/twisted-completion.zsh?format=txt:
	completion for twisted using internally generated completion.

2013-02-01  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31015: Completion: compaudit: where we can find who owns the
	zsh executable, allow the same owner to own completion files.

2013-02-01  Mikael Magnusson  <mikachu@gmail.com>

	* unposted: Fix _prove completer commit.

2013-01-29  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Jesper Nygårds: 31012: Completion/Unix/Command/_gradle:
	updates.

	* Dmitry Roshchin: 31008: Completion/openSUSE/Command/_zypper,
	Completion/openSUSE/Command/_osc: updates.

2013-01-26  Bart Schaefer  <schaefer@zsh.org>

	* 31000: Doc/Zsh/contrib.yo: fix typo in example.

2013-01-24  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* users/17608: Doc/Zsh/contrib.yo,
	Functions/Zle/modify-current-argument: use function to modify
	current command line argument.

2013-01-22  Peter Stephenson  <p.stephenson@samsung.com>

	* 30993: Src/subst.c, Test/D04parameter.ztst: parameter
	modifiers :wq operating on an empty string crashed the shell.
	The shell isn't supposed to crash.

2013-01-20  Oliver Kiddle <opk@zsh.org>

	* 30987: Completion/X/Command/_xrandr: only call xrandr when
	necessary and use _call_program

2013-01-14  Peter Stephenson  <p.stephenson@samsung.com>

	* 30960: Alexey Bezhan: Completion/Unix/Command/_django:
	compatibility issue.

2013-01-10  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 30958: Jeremy Mates: Completion/Unix/Command/_prove,
	Completion/Unix/Command/.distfiles: new completion.

2013-01-07  Bart Schaefer  <schaefer@zsh.org>

	* unposted (see 30952): Src/builtin.c: tweak to 30949 to fix the
	buffer pointer.

2013-01-06  Bart Schaefer  <schaefer@zsh.org>

	* 30949: Src/builtin.c: restore "read -q" behavior lost by 27188.

2013-01-05  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 30946: Robert Kovacsics: Completion/X/Command/_xrandr: use
	command to generate completions.

2013-01-04  Peter Stephenson  <p.stephenson@samsung.com>

	* 30941: Completion/bashcompinit: scalars giving status of bash
	completion should be exported for external programmes.

2013-01-03  Bart Schaefer  <schaefer@zsh.org>

	* users/17524: Doc/Zsh/expn.yo: misc. parameter flag clarifications.

2013-01-03  Peter Stephenson  <pws@csr.com>

	* unposted: Config/version.mk: update version to 5.0.2-dev-0
	to avoid clash with release.

2012-12-21  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* unposted: README, Config/version.mk, Etc/FAQ.yo: release
	5.0.2.

2012-12-21  Peter Stephenson  <pws@csr.com>

	* 30930: Src/parse.c, Test/D03procsubst.ztst: anonymous
	functions shouldn't be marked as simple; this prevented process
	based features from working in their arguments.

2012-12-20  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* unposted: Config/version.mk: zsh 5.0.1.

2012-12-18  Oliver Kiddle <opk@zsh.org>

	* 30877: Etc/zsh-development-guide: document git workflow

2012-12-18  Peter Stephenson  <pws@csr.com>

	* 30914: mkinstalldirs: default mode for installation
	directories is 755.

2012-12-17  Phil Pennock  <pdpennock@users.sourceforge.net>

	* 30901, 30906: Etc/zsh-development-guide: document git usage,
	update patch descriptions, mention editorconfig.

2012-12-16  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* unposted: README, Config/version.mk, Etc/FAQ.yo,
	Completion/Base/Utility/.distfiles,
	Completion/Unix/Command/.distfiles,
	Completion/Unix/Type/.distfiles, for 5.0.0-test-1.

	* unposted: Src/utils.c: missing mod_export.

2012-12-13  Peter Stephenson  <pws@csr.com>

	* 30876: Src/exec.c, Test/A06assign.ztst, Test/C03traps.ztst:
	obscure failures to process non-zero return values could result
	from optimising a list to a simple command.

2012-12-08  Bart Schaefer  <schaefer@zsh.org>

	* users/17445: Src/math.c, Test/C01arith.ztst: fix handling of
	leading zeroes in floating point.

2012-11-20  Oliver Kiddle <opk@zsh.org>

	* 30811: Completion/Linux/Command/_btrfs,
	Completion/Unix/Command/_mount: new completion for btrfs and
	complete btrfs and ext4 mount options and new linux mount flags

2012-11-16  Vin Shelton  <acs@xemacs.org>

	* users/16865: Doc/Zsh/grammar.yo: Added missing menu item for Errors.

2012-11-18  Bart Schaefer  <schaefer@zsh.org>

	* users/17042: Src/jobs.c: don't stomp the environment in "jobs -Z"
	unless we've first copied it to new memory.

2012-11-16  Oliver Kiddle <opk@zsh.org>

	* 30802: Completion/Unix/Command/_find: add new command switches

	* 30801: Completion/X/Command/_urxvt, Completion/X/Type/_xft_fonts:
	fix font completion for newer fontconfig & update urxvt completion

2012-11-15  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 30789: Doc/Zsh/grammar.yo, Doc/Zsh/options.yo, Src/hist.c,
	Src/init.c, Src/options.c, Src/zsh.h, Test/A04redirect.zsh:  add
	CONTINUE_ON_ERROR option for compatibility but turn it off:
	scripts exit on an error instead of returning to the top-level
	like interactive shells.

	* 30800: Michal Halenka: Completion/Unix/Command/_arping: fix
	option.

2012-11-12  Oliver Kiddle <opk@zsh.org>

	* 30795: Completion/Unix/Command/_xz,
	Completion/Unix/Command/_bzip2: new xz completion, new bzip2 options

	* 30794: Completion/Unix/Command/_irssi,
	Completion/Unix/Command/_mutt: update for new options

2012-11-11  Oliver Kiddle <opk@zsh.org>

	* 30793: Completion/Unix/Command/_getent,
	Completion/Unix/Command/_iconv, Completion/Unix/Command/_ldd:
	account for eglibc in _pick_variant patterns

2012-11-08  Bart Schaefer  <schaefer@zsh.org>

	* 30786: Src/builtin.c: do not enter interactive history editing
	or command execution if "fc" is called from a ZLE widget.

2012-11-08  Peter Stephenson  <pws@csr.com>

	* 30783: Src/lex.c: we don't want leading "="'s to be active when
	tokenising strings that aren't going to be treated as command
	line arguments.

	* 30780: Doc/Zsh/builds.yo: document that set -o failures are
	hard but setopt failures are soft.

2012-11-07  Oliver Kiddle <opk@zsh.org>

	* Benjamin R. Haskell: 30737: Completion/Unix/Command/_git:
	make custom completion functions for git aliases easier

	* users/17382: Completion/Unix/Type/_remote_files,
	Completion/Unix/Command/_vim, Completion/Unix/Command/_git,
	Completion/Unix/Type/_urls: complete URLs for vim and make
	_remote_files more consistent with _files

2012-10-25  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 30735: Src/parse.c: array assignments aren't simple because
	they can contain process substitutions.

2012-10-19  Peter Stephenson  <pws@csr.com>

	* Roman Kaminski: 30738: Completion/Unix/Command/_bzr: send
	command.

	* Greg Bouzakis: 30741: Completion/Unix/Command/_systemd: add
	suspend command.

	* unposted: Doc/Zsh/expn.yo: further splitting clarifications.

2012-10-18  Peter Stephenson  <pws@csr.com>

	* 30740: Doc/Zsh/expn.yo: add example of process substitution
	with anonymous function.

	* c.f. users/17330: Doc/Zsh/expn.yo: fix reference to splitting
	rule in parameter expansion rules.

2012-10-11  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 30726: Doc/Zsh/builtins.yo, Src/builtin.c, Src/exec.c,
	Src/hashtable.c, Src/init.c, Src/options.c, Src/parse.c,
	Src/signals.c, Src/zsh.h, Src/Modules/parameter.c,
	Test/B07emulate.ztst: extend 30722 to handle the case
	where shell options passed to the emulate command need
	propagating to sticky emulation.

2012-10-11  Peter Stephenson  <pws@csr.com>

	* 30724: Src/exec.c, Src/jobs.c: shell code optimised to use
	execsimple() doesn't have a valid thisjob.

2012-10-09  Peter Stephenson  <pws@csr.com>

	* users/17318: Src/Zle/zle_utils.c: don't increment the undo
	change number for every variable read, only the first in a row.

	* users/17314: Src/Zle/zle_utils.c: ensure an undo change number
	uniquely specifies a point in editing history by incrementing
	the value returned by the variable.

	* unposted: Src/builtin.c: fix trivial typo with "functions +T".

2012-10-07  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 30722: Src/builtin.c, Src/exec.c, Src/init.c, Src/options.c,
	Src/Modules/parameter.c, Test/B07emulate.ztst: fix some cases
	where options or emulations were not propagated properly
	from the emulate command.

	* 30718: README, Doc/Zsh/builtins.yo, Src/builtin.c,
	Test/C04funcdef.ztst: emulate command evaluations should apply
	sticky emulation to autoloads, too.

2012-10-07  Oliver Kiddle <opk@zsh.org>

	* unposted: Completion/Unix/Command/_webbrowser,
	Completion/Unix/Type/_pspdf: add evince, zathura, dwb

	* 30714: Completion/X/Command/_xclip: complete files,-t,-f for xclip

2012-10-05  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 30716: Src/options.c: IGNORECLOSEBRACES should be an emulation
	option since it changes what syntax is valid.

	* 30715: Src/init.c, Src/lex.c, Src/parse.c, Src/subst.c,
	Src/zsh.h, Src/Zle/zle_tricky.c: use a named enum for
	lexical tokens.

2012-10-03  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* users/17305: Doc/Zsh/expn.yo: fix documentation for ordering
	of word splitting and improve (z) and (Z) documentation.

	* users/17310: Doc/Zsh/params.yo, Src/lex.c, Test/A04redirect.ztst,
	Test/D06subscript.ztst: back off users/17304 owing to problem
	with [ command, document problem, and test the case that needs
	to work.

2012-10-02  Peter Stephenson  <pws@csr.com>

	* users/17304: Src/lex.c, Test/D06subscript.ztst: angle brackets
	aren't associated with special parsing inside square brackets.

2012-09-30  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Aaron Schrab: 30712: .editorconfig: multi-editor specification
	of editing formats.

	* Aaron Schrab: 30711: Completion/Unix/Type/_bind_addresses:
	improved IPv6 completion.

	* Aaron Schrab: 30710: Completion/Unix/Command/_perldoc: updates.

2012-09-29  Frank Terbeck  <ft@bewatermyfriend.org>

	* Seth House: 30702: Doc/Zsh/contrib.yo,
	Functions/VCS_Info/Backends/VCS_INFO_get_data_hg: Removed --debug
	flag from the hg vcs_info backend

	* Seth House: 30701: Misc/vcs_info-examples: Added an hg hook
	example to restore the 40-char hash

	* Baptiste Daroussin: 30703:
	Functions/VCS_Info/Backends/VCS_INFO_detect_fossil: Fix fossil
	detection on unix

2012-09-28  Oliver Kiddle <opk@zsh.org>

	* 30697: Completion/Unix/Command/_dbus: new completion definition

2012-09-21  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 30692: Completion/Unix/Type/_path_files, Doc/Zsh/builtins.yo,
	Src/builtin.c: allow autoload +X -m to work; change _path_files
	so it works on that.

2012-09-21  Peter Stephenson  <pws@csr.com>

	* 30687 (typo fixed): Doc/Zsh/params.yo, Src/jobs.c: don't
	REPORTTIME if zleactive (but time keyword is allowed).

2012-09-15  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Александр Балезин: 30667: Completion/Unix/Command/_ip: add
	addrlabl subcommand.

2012-09-11  Peter Stephenson  <pws@csr.com>

	* unposted: NEWS: refer to some newly added features.

	* 30647, 30649: Doc/Zsh/arith.yo, Src/math.c, Src/utils.c,
	Test/C01arith.ztst: allow underscores in numeric constants
	within math evaluation.

2012-09-09  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Jun T.: 30664: configure.ac: fix some Yodl version issues.

2012-09-08  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* users/17236: Src/builtin.c: r and other fc output didn't
	unmetafy when listing to a file other than stdout.

2012-09-06  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 30656: Src/math.c: treat dividing by -1 the same as
	multiplying by it to get around SIGFPE.

2012-09-05  Peter Stephenson  <pws@csr.com>

	* Jun T.: 30658: Completion/Unix/Command/_uniq: more options.

	* Silas Silva: users/17223: Completion/Unix/Command/_lp:
	page-ranges option.

2012-09-03  Peter Stephenson  <pws@csr.com>

	* users/17213: Completion/Base/Completer/_user_expand,
	Doc/Zsh/compsys.yo: allow REPLY to pass a description for an
	expansion.

2012-08-27  Peter Stephenson  <p.w.stephenson@ntlworld. com>

	* Oliver (olipro): 30643: Completion/Linux/Command/_ipset:
	completion update.

2012-08-25  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* John Stahara: 30641: Src/Zle/zle_keymap.c: bindkey -N
	error report is misleading when copying keymap.

2012-08-23  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Jun T: 30640 (plus additional comment): Src/zsh.h,
	Src/compat.c: MacOS doesn't define __STDC_ISO_10646__ but we
	need the replacement wcwidth() anyway.

2012-08-23  Peter Stephenson  <pws@csr.com>

	* Aaron Schrab: 30636: Completion/Unix/Command/_telnet:
	telnet-ssl options.

	* Aaron Schrab: 30637: Completion/Unix/Command/_telnet: -b option

	* Aaron Schrab: 30638: Completion/Unix/Command/_telnet: IPv4
	and IPv6 options.

2012-08-21  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* users/17211: Completion/Unix/Type/_files, Doc/Zsh/compsys.yo:
	new recursive-files style.

	* 30633: Doc/Zsh/builtins.yo, Src/builtin.c, Src/exec.c,
	Src/hashtable.c, Src/options.c, Src/subst.c, Src/zsh.h:
	"functions -T" traces only marked function and not called
	functions unless also marked.

2012-08-20  Peter Stephenson  <pws@csr.com>

	* Stepan Koltsov: 30634: Functions/Misc/zmv: use (q-) quoting
	for output for clarity.

2012-08-17  Peter Stephenson  <pws@csr.com>

	* Stepan Koltsov: 30632
	(https://raw.github.com/stepancheg/zsh/bfa81caaac44dacfa05adb77f61526ea90346219/Completion/Unix/Command/_clay):
	Completion/Unix/Command/_clay,
	Completion/Unix/Command/.distfiles:
	new completion.

	* Stepan Koltsov: 30632
	(https://github.com/stepancheg/zsh/commit/b0f1427e4983be6dfdc07ccaf86f153d5f9959b9.patch):
	Completion/Unix/Command/_gcc: aliases and clang-specific flags.

	* 30629 plus unposted formatting improvements:
	Doc/Zsh/builtins.yo, Src/Builtins/rlimits.c: more complete
	handling for socket buffer size limit (NetBSD) plus formatting
	and consistency changes (kb -> kbytes everywhere in ulimit
	output, K-bytes to kilobytes everywhere in documentation).

	* 30627: configure.ac, Doc/Zsh/builtins.yo,
	Src/Builtins/rlimits.awk, Src/Builtins/rlimits.c:
	support RLIMIT_NTHR as on NetBSD.

2012-08-16  Peter Stephenson  <pws@csr.com>

	* 30619: Doc/Zsh/builtins.yo, Src/builtin.c,
	Test/B02typeset.ztst: repeat "typeset -T" with same two first
	arguments is not an error.

	* 30617: Src/prototypes.h, Src/zsh_system.h: rationalise
	replacement of tgoto() prototype which could appear twice
	inconsistently.

2012-08-14  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* unposted: Etc/relnote_5.0.0.txt, Etc/.distfiles: add.

	* unposted: Etc/Changelog-4.3, Etc/ChangeLog-5.0,
	Etc/.distfiles: rename

2012-08-13  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* unposted: ChangeLog, Etc/ChangeLog-5.0: move changes up
	to 5.0 into subdirectory.

	* Michal Halenka: 30608: Completion/Unix/Command/_ip: del rather
	delete tunnel.

2012-08-13  Peter Stephenson  <pws@csr.com>

	* Jesse Weinstein: 30607: Doc/Makefile.in: fix ancient
	dependency problem with moved Yodl files.

	* Aaron Schrab: 30604: Src/Zle/zle_move.c: make repeating vi skip
	character useful by ignoring character just matched.

	* Aaron Schrab: 30603: Src/Zle/zle_move.c: repeating vi skip
	characters commands caused bad positioning.

2012-08-07  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* cat_in_136: 17200: Completion/Unix/Command/.distfiles,
	Completion/Unix/Command/_lha, Completion/Unix/Command/_nkf: new
	completions.  nkf is a Kanji code converter.

	* YAMAMOTO Takashi: 30599: Src/compat.c, Src/zsh.h: don't
	use the replacement wcwidth if not ISO-10646 as the assumptions
	it makes probably won't work.

2012-07-27  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 30590: Doc/Makefile.in, Doc/.distfiles: work around problem
	turning intro.ms into PDF.

	* unposted: relabel as 5.0.0-dev-0.

2012-07-23  Geoff Wing  <gcw@zsh.org>

	* unposted: Doc/Zsh/ftp_sites.yo: Remove unavailable sites

2012-07-21  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* unposted: update for 5.0.0 release.