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 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842
|
2005-04-11 Bruno Haible <bruno@clisp.org>
* gettext-0.14.4 released.
2005-04-11 Bruno Haible <bruno@clisp.org>
* autopoint.in: Update for 0.14.4.
2005-03-14 Bruno Haible <bruno@clisp.org>
* gettext-0.14.3 released.
2004-10-23 Bruno Haible <bruno@clisp.org>
* start-po-el: New file.
* Makefile.am (lisp_LISP): Add it.
2005-03-08 Bruno Haible <bruno@clisp.org>
* autopoint.in: Update for 0.14.3.
2005-03-08 Bruno Haible <bruno@clisp.org>
* gettextize.in: Compute comma separated lists for ChangeLog entries
correctly. Also comma-separate the EXTRA_DIST ChangeLog entry.
2005-03-07 Bruno Haible <bruno@clisp.org>
* gettextize.in: Create the auxdir if it doesn't exist.
Suggested by Alexandre Duret-Lutz <adl@src.lip6.fr>.
2005-03-07 Bruno Haible <bruno@clisp.org>
* gettextize.in (func_m4ChangeLog_init, func_m4ChangeLog_add_entry,
func_m4ChangeLog_finish): Let the behaviour depend on
using_m4ChangeLog. Initialize using_m4ChangeLog depending on whether
an m4/ChangeLog already exists.
Suggested by Alexandre Duret-Lutz <adl@src.lip6.fr>.
2005-03-06 Bruno Haible <bruno@clisp.org>
* gettextize.in: Update the instructions for fetching config.guess and
config.sub.
Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.
2005-03-06 Bruno Haible <bruno@clisp.org>
* autopoint.in (func_destfile): Also set a variable 'sharedowner'.
For files with shared ownership, treat local modification as a warning.
Suggested by Alexandre Duret-Lutz <adl@src.lip6.fr>.
2005-03-05 Bruno Haible <bruno@clisp.org>
* gettextize.in: When a po/POTFILES.in does not exist, create an
initial empty one.
Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.
2005-03-05 Bruno Haible <bruno@clisp.org>
* gettextize.in (func_m4ChangeLog_init, func_m4ChangeLog_finish):
Keep track whether a $m4dir/ChangeLog file was created.
Don't create a $m4dir/Makefile.am if aclocal version 1.8 or newer is
present; instead add $m4dir/ChangeLog to EXTRA_DIST if needed.
Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.
2005-03-05 Bruno Haible <bruno@clisp.org>
* gettextize.in: When adding items to EXTRA_DIST, SUBDIRS,
DIST_SUBDIRS, ACLOCAL_AMFLAGS in Makefile.am, optionally remove one
space after the added items. When adding items to AC_CONFIG_FILES,
AC_OUTPUT in configure.ac, remove don't insert an extra space after
the added items.
Suggested by Alexandre Duret-Lutz <adl@src.lip6.fr>.
2005-03-05 Bruno Haible <bruno@clisp.org>
* gettextize.in: Emit brackets around the argument of
AM_GNU_GETTEXT_VERSION.
Suggested by Alexandre Duret-Lutz <adl@src.lip6.fr>.
2005-03-05 Bruno Haible <bruno@clisp.org>
* gettextize.in: Don't recommend to add AM_GNU_GETTEXT([external])
when it is already present.
Suggested by Alexandre Duret-Lutz <adl@src.lip6.fr>.
2005-03-05 Bruno Haible <bruno@clisp.org>
Remove old sh, tcl, perl interfaces.
* gettext-sh: Remove file.
* tcl_gettext.c, README-Tcl: Remove files.
* gettext.perl: Remove file.
* Makefile.am (EXTRA_DIST): Remove them.
2005-02-24 Bruno Haible <bruno@clisp.org>
* gettext-0.14.2 released.
2005-02-24 Bruno Haible <bruno@clisp.org>
* autopoint.in: Update for 0.14.2.
2005-02-07 Bruno Haible <bruno@clisp.org>
* autopoint.in: Use LC_ALL=C to protect range expression against
Estonian locale.
* gettextize.in: Likewise.
2005-02-05 Bruno Haible <bruno@clisp.org>
* autopoint.in: Check the version number, instead of relying on cvs
for doing so.
Reported by Paul Eggert.
2005-01-10 Bruno Haible <bruno@clisp.org>
Security fixes.
* autopoint.in: Exit if the creation of one of the temporary
directories fails. Also restrict the access to the temporary cvs_dir.
Reported by Javier Fernández-Sanguino Peña <jfs@computer.org>.
2005-01-09 Bruno Haible <bruno@clisp.org>
* autopoint.in (func_tmpdir): New function.
(func_find_curr_installdir): Use it.
(mismatchfile): Create inside a temporary directory. Remove afterwards.
* gettextize.in (func_tmpdir): New function.
(func_find_curr_installdir): Use it.
Reported by Joey Hess <joeyh@debian.org>.
2005-01-05 Bruno Haible <bruno@clisp.org>
* autopoint.in: Update year in --version output.
* gettextize.in: Likewise.
2005-01-05 Bruno Haible <bruno@clisp.org>
* gettextize.in: Unset CDPATH in a more robust way.
2004-12-14 Bruno Haible <bruno@clisp.org>
* gettextize.in: Unset CDPATH.
2004-02-07 Bruno Haible <bruno@clisp.org>
* gettextize.in: Modify only the first occurrence of AC_CONFIG_FILES,
not all of them.
Reported by Dalibor Topic <robilad@kaffe.org>.
2004-02-04 Bruno Haible <bruno@clisp.org>
* gettextize.in: Add po to SUBDIRS if it was created in this run.
Tell the user to create po/POTFILES.in if it is not yet there.
Reported by Prof. Roberto Bagnara <bagnara@cs.unipr.it>.
2004-02-02 Bruno Haible <bruno@clisp.org>
* gettextize.in (m4filelist): Add glibc2.m4.
2004-01-29 Bruno Haible <bruno@clisp.org>
* gettext-0.14.1 released.
2004-01-28 Bruno Haible <bruno@clisp.org>
* gettext-0.14 released.
2004-01-19 Bruno Haible <bruno@clisp.org>
* gettextize.in: Modify DIST_SUBDIRS like SUBDIRS, when it was found in
Makefile.am.
Reported by Dalibor Topic <robilad@kaffe.org>.
2003-12-17 Bruno Haible <bruno@clisp.org>
* gettext-0.13.1 released.
2003-11-30 Bruno Haible <bruno@clisp.org>
* gettext-0.13 released.
2003-11-23 Bruno Haible <bruno@clisp.org>
* gettextize.in (m4filelist): Remove ssize_t.m4.
2003-11-16 Bruno Haible <bruno@clisp.org>
* gettextize.in (m4filelist): Add size_max.m4, ssize_t.m4, xsize.m4.
2003-11-08 Bruno Haible <bruno@clisp.org>
* autopoint.in: Allow configure.in.in to be used instead of
configure.in.
2003-08-11 Bruno Haible <bruno@clisp.org>
* autopoint.in: When local files have been modified, create a .diff
file for the user's convenience.
Suggested by Denis Barbier <barbier@debian.org>.
2003-08-07 Bruno Haible <bruno@clisp.org>
* autopoint.in: Fix the regular expression used to parse intl/VERSION.
Patch by Denis Barbier <barbier@debian.org>.
2003-06-19 Bruno Haible <bruno@clisp.org>
* gettextize.in (m4filelist): Add intmax.m4, longdouble.m4,
longlong.m4, printf-posix.m4, signed.m4, wchar_t.m4, wint_t.m4.
2003-05-22 Bruno Haible <bruno@clisp.org>
* gettext-0.12.1 released.
2003-05-17 Bruno Haible <bruno@clisp.org>
* gettext-0.12 released.
2003-05-08 Bruno Haible <bruno@clisp.org>
* gettextize.in: Ignore ACLOCAL_AMFLAGS options of the form -Idir when
dir is an absolute pathname.
Reported by Jürgen A. Erhard <jae+debian@jerhard.org>.
2003-04-29 Bruno Haible <bruno@clisp.org>
* gettextize.in: Recommend running automake only after aclocal,
because automake 1.7 assumes that aclocal.m4 has already been built.
2003-04-12 Bruno Haible <bruno@clisp.org>
* Makefile.vms: Avoid rules with no lines. Don't use the force target.
Correct wildcard syntax.
Suggested by Jouk Jansen <joukj@hrem.stm.tudelft.nl>.
2003-04-11 Bruno Haible <bruno@clisp.org>
* Makefile.am (archive.tar.gz): Avoid creating an empty tar.gz file.
Reported by Martin Mokrejš <mmokrejs@natur.cuni.cz>.
2003-03-30 Bruno Haible <bruno@clisp.org>
* Makefile.vms: New file.
* Makefile.am (EXTRA_DIST): Add Makefile.vms.
2003-03-17 Bruno Haible <bruno@clisp.org>
Native Woe32/MSVC support.
* Makefile.msvc: New file.
* Makefile.am (EXTRA_DIST): Add it.
2003-02-28 Bruno Haible <bruno@clisp.org>
Support for relocatable installation.
* autopoint.in: Relocate $gettext_dir.
* gettextize.in: Relocate $gettext_dir.
2003-02-16 Bruno Haible <bruno@clisp.org>
* gettextize.in: Create po/Makevars.template from installed
po/Makevars.template, not from po/Makevars.
(func_version): Update copyright year.
2003-02-16 Bruno Haible <bruno@clisp.org>
* po-compat.el: Add testing instructions.
(po-find-file-coding-system-guts) [XEMACS]: Make it work again,
after (car (nth i po-content-type-charset-alist)) changed from symbol
to string.
2003-02-12 Bruno Haible <bruno@clisp.org>
* elisp-comp: Move to ../../config/elisp-comp.
* Makefile.am (EXTRA_DIST): Remove elisp-comp.
2003-01-12 Bruno Haible <bruno@clisp.org>
* Makefile.am: Make use of += for variables.
2003-01-08 Bruno Haible <bruno@clisp.org>
* Makefile.am (EXTRA_DIST): Add elisp-comp.
2002-12-07 Bruno Haible <bruno@clisp.org>
Switch to autoconf-2.57 and automake-1.7.2.
* elisp-comp: Upgrade to automake-1.7.2.
2002-11-13 Bruno Haible <bruno@clisp.org>
Assume ANSI C.
* tcl_gettext.c (tcl_gettext, tcl_textdomain, tcl_bindtextdomain):
Use ANSI C function declarations.
2002-10-25 Karl Eichwalder <ke@suse.de>
* po-compat.el (po-find-file-coding-system-guts): Provide the old
version (pre 2002-09-27) for XEmacs.
2002-10-16 Bruno Haible <bruno@clisp.org>
* po-compat.el: Remove call of codepage-setup of all support codepages.
(po-find-file-coding-system-guts): Avoid code duplication.
2002-09-27 Karl Eichwalder <ke@suse.de>
* po-compat.el (po-content-type-charset-alist): Convert the
car of each association to a string. From emacs CVS
(lisp/textmodes/po.el); provided by Eli Zaretskii.
(po-find-file-coding-system-guts): If the charset matches a name
of a codepage, set up that codepage and return it as a coding
system to decode the file. Likewise from emacs CVS.
* po-compat.el: Line up comment etc. with lisp/textmodes/po.el.
(po-find-charset): Search for the Charset= header even if we've read
less than 4KB. From emacs CVS (lisp/textmodes/po.el); provided by
Eli Zaretskii.
2002-08-27 Bruno Haible <bruno@clisp.org>
* autopoint.in: Call func_fatal_error, not fatal_error.
Patch by Sam Hocevar <sam@zoy.org>.
2002-08-26 Bruno Haible <bruno@clisp.org>
* archive.tar.gz: Avoid keyword substitution for archive/mkinstalldirs.
Reported by Colin Watson <cjwatson@debian.org>.
2002-08-12 Bruno Haible <bruno@clisp.org>
* gettextize.in: Fix typo in the handling of AM_GNU_GETTEXT_VERSION.
Reported by Adam Heath <doogie@debian.org>.
2002-08-06 Bruno Haible <bruno@clisp.org>
* gettext-0.11.5 released.
2002-08-03 Paul Eggert <eggert@twinsun.com>
* gettextize.in: Use "read dummy" to avoid an error with Solaris
/bin/sh.
2002-08-02 Bruno Haible <bruno@clisp.org>
* gettextize.in: Add ulonglong.m4 to m4filelist.
2002-07-25 Bruno Haible <bruno@clisp.org>
* gettext-0.11.4 released.
2002-07-25 Bruno Haible <bruno@clisp.org>
* add-to-archive: New file.
* add-to-autopoint-files: Remove file.
* cvsuser.c: New file.
* Makefile.am (EXTRA_DIST): Remove add-to-autopoint-files. Add
add-to-archive, cvsuser.c.
2002-07-25 Bruno Haible <bruno@clisp.org>
* autopoint.in: Unset also CVS_IGNORE_REMOTE_ROOT and CVSIGNORE.
2002-07-23 Bruno Haible <bruno@clisp.org>
* gettextize.in: Add inttypes-pri.m4 to m4filelist.
2002-07-21 Bruno Haible <bruno@clisp.org>
* gettextize.in: Add inttypes.m4, inttypes_h.m4, stdint_h.m4,
uintmax_t.m4 to m4filelist.
2002-07-19 Bruno Haible <bruno@clisp.org>
* gettextize.in: Copy also intdiv0.m4.
2002-07-17 Bruno Haible <bruno@clisp.org>
* gettext-0.11.3 released.
2002-07-16 Bruno Haible <bruno@clisp.org>
* po-mode.el (po-mode-version-string): Bump to 2.01.
2002-06-13 Bruno Haible <bruno@clisp.org>
* po-mode.el (po-mode-line-entry...): Try harder to find a good place
for adding po-mode-line-entry into mode-line-format.
Reported by Sam Steingold <sds@gnu.org>.
2002-05-12 Bruno Haible <bruno@clisp.org>
* po-compat.el: Add ISO-8859-14, KOI8-T, GEORGIAN-PS to the list of
allowed encodings.
2002-05-11 Bruno Haible <bruno@clisp.org>
* autopoint.in: Recognize AM_GNU_GETTEXT_VERSION(..) syntax.
* gettextize.in: Likewise.
2002-05-03 Bruno Haible <bruno@clisp.org>
* autopoint.in: Unset all other environment variables which influence
cvs. Pass -d $CVSROOT explicitly.
(func_mkdir_for): New function.
(func_copy): Call it.
2002-05-01 Bruno Haible <bruno@clisp.org>
* autopoint-files: New directory.
* add-to-autopoint-files: New file.
* autopoint.in: New file.
* Makefile.am (EXTRA_DIST): Add add-to-autopoint-files, archive.tar.gz.
(DISTCLEANFILES): Add autopoint.
(gettextsrcdir): New variable.
(gettextsrc_DATA): New variable.
(archive.tar.gz): New rule.
* gettextize.in: Bump GETTEXT_VERSION value in configure.in.
Ask maintainer to acknowledge the remaining changes.
2002-04-28 Bruno Haible <bruno@clisp.org>
* gettextize.in: Avoid the remarks about po/Makevars and config.guess
if they are not necessary.
* gettextize.in: New option -n/--dry-run.
* gettextize.in: Use functions for maintainability.
Remove undocumented option --run.
* gettextize.in: Use 'echo' instead of '$echo'.
2002-04-29 Karl Eichwalder <ke@suse.de>
* po-mode.el (po-mode-menu-layout): Don't try to display tooltips
for XEmacs.
(po-subedit-mode-menu-layout): Likewise.
2002-04-28 Bruno Haible <bruno@clisp.org>
* gettextize.in: Treat mkinstalldirs like config.rpath.
2002-04-27 Karl Eichwalder <ke@suse.de>
* po-mode.el (po-mode-menu-layout): Add tooltips.
(po-subedit-mode-menu-layout): Likewise.
* po-mode.el (po-mode-menu-layout): Adopt terminology for editing
from Emacs (cut/copy/paste).
2002-04-24 Bruno Haible <bruno@clisp.org>
* gettext-0.11.2 released.
2002-04-22 Bruno Haible <bruno@clisp.org>
* Makefile.am (lisp_LISP): Add po-compat.el.
(EXTRA_DIST): Use it.
2002-03-17 Karl Eichwalder <ke@suse.de>
* po-compat.el: New file, extracted from po-mode.el.
* po-mode.el (po-content-type-charset-alist, po-find-charset,
po-find-file-coding-system-guts, po-find-file-coding-system): Move to
po-compat.el.
2002-04-19 Bruno Haible <bruno@clisp.org>
* po-mode.el (po-team-name-to-code): Add Ido and Walloon. Change
Javanese from jw to jv.
2002-03-15 Bruno Haible <bruno@clisp.org>
* gettextize.in: Use "sed -e 1q" instead of "head -1", for compliance
to pure naked POSIX 1003.1-2001 environments.
From Paul Eggert.
2002-03-14 Karl Eichwalder <ke@suse.de>
* po-mode.el (po-team-name-to-code): Add es_AR, zh_CN, and zh_TW.
2002-03-12 Bruno Haible <bruno@clisp.org>
* gettext-0.11.1 released.
2002-03-11 Karl Eichwalder <ke@suse.de>
* po-mode.el (po-find-file-coding-system-guts): Checking
'insert-file-contents' must come first to avoid messing up with
arguments.
Reported by Neil Darlow; fixed by Andreas Schwab.
2002-03-09 Karl Eichwalder <ke@suse.de>
* po-mode.el (po-find-file-coding-system-guts): Don't try to
detect the coding system when filename does not exist.
(po-compute-counters): Search for "^msgid" not 'po-next-entry' if
we don't know for sure any entry will follow at all.
2002-02-18 Karl Eichwalder <ke@suse.de>
* po-mode.el (po-mode): Provide it.
2002-02-19 Bruno Haible <bruno@clisp.org>
* gettextize.in: Mark all error messages which lead to failure with
asterisks and "*** Stop.".
2002-02-11 Karl Eichwalder <ke@suse.de>
* po-mode.el (po-subedit-ediff): When variants are equal don't call
'po-ediff-buffers-exit-recursive'.
2002-02-09 Karl Eichwalder <ke@suse.de>
* po-mode.el (po-send-mail): Set coding-system-for-read and
coding-system-for-write to the coding system of the po buffer;
otherwise Emacs will fall back to mule-utf-8 when the default coding
system is different from the po buffer and thus the following
'shell-command-on-region' will prepare an wrongly encoded file (e.g.,
mule-utf-8 instead of UTF-8).
2002-02-09 Karl Eichwalder <ke@suse.de>
* po-mode.el (po-translation-project-address): Convert it to a
customizable variable.
(po-translation-project-mail-label): New variable.
(po-send-mail): Use it.
2002-02-01 Karl Eichwalder <ke@suse.de>
* po-mode.el (po-mode-version-string): New variable.
(po-mode-version): Use it instead of RCS/CVS Revision tag.
2002-01-31 Bruno Haible <bruno@clisp.org>
* gettext-0.11 released.
2002-01-26 Bruno Haible <bruno@clisp.org>
* gettextize.in: If directory intl was removed, remove it from SUBDIRS
in Makefile.am.
If intl/Makefile.in was removed, remove intl/Makefile from
AC_OUTPUT/AC_CONFIG_FILES statement in configure.in.
Remove intl/intlh.inst from AC_OUTPUT/AC_CONFIG_FILES statement in
configure.in.
Remove old-style "sed ... > po/Makefile" statement from configure.in.
Remove old-style AC_LINK_FILES statement from configure.in.
Recommend replacement for Makefile variables DATADIRNAME, INSTOBJEXT,
GENCAT, POSUB.
Recommend replacement for shell variables nls_cv_header_intl,
nls_cv_header_libgt.
2002-01-25 Bruno Haible <bruno@clisp.org>
* gettextize.in: New option --no-changelog.
Don't create ChangeLog entries for files that don't change.
Verify the existence of a configure.in line starting with "AC_OUTPUT("
before attempting to modify it.
Treat "AC_CONFIGURE_FILES(" like "AC_OUTPUT(".
Recommend replacement for INTLLIBS Makefile variable.
2002-01-19 Bruno Haible <bruno@clisp.org>
* gettextize.in: Always recommend the full set of m4 files. Many
improvements for packages that use automake. Modify configure.in.
2002-01-15 Bruno Haible <bruno@clisp.org>
* gettextize.in: Handle po/Makevars specially, don't overwrite the
previous customizations.
2002-01-12 Bruno Haible <bruno@clisp.org>
* gettextize.in: Update year in --version output.
2002-01-10 Bruno Haible <bruno@clisp.org>
* po-mode.el (po-content-type-charset-alist): Add Emacs20/21 codepages.
2001-11-20 Karl Eichwalder <ke@suse.de>
* po-mode.el (po-ediff-buffers-exit-recursive): Kill ediff buffers
after quitting the ediff session.
2002-01-03 Bruno Haible <bruno@clisp.org>
* gettextize.in: Recommend installation of gettext.h.
2001-12-15 Karl Eichwalder <ke@suse.de>
* po-mode.el (po-eval-requoted): Add \r to avoid additional quoting
during edit. Reported by Santiago Vila.
2001-12-06 Bruno Haible <bruno@clisp.org>
* gettextize.in: Install config.rpath in the directory specified
through AC_CONFIG_AUX_DIR, not necessarily in the toplevel dir.
2001-12-02 Bruno Haible <bruno@clisp.org>
* gettextize.in: Also copy config.rpath, and recommend to copy
lib-ld.m4, lib-link.m4, lib-prefix.m4.
2001-11-25 Karl Eichwalder <ke@suse.de>
* po-mode.el (po-guess-archive-name): Verify that versions provided by
file name and by Project-Id-Version field match.
2001-11-18 Bruno Haible <haible@clisp.cons.org>
* gettextize.in: New option --intl.
(intldir): New variable.
Don't populate intl subdirectory if --intl is omitted.
2001-11-19 Karl Eichwalder <ke@suse.de>
* po-mode.el (po-ediff-quit): New function.
(ediff-keymap-setup-hook): Assign key binding for 'po-ediff-quit'.
(po-ediff-buffers-exit-recursive): New function, in part derived
from 'po-subedit-ediff'.
(po-subedit-ediff): Use it.
* po-mode.el (po-subedit-ediff): Use meaningful buffer names,
derived from 'marker-regex'.
Cleanup: Follow docstring conventions.
2001-11-19 Karl Eichwalder <ke@suse.de>
* po-mode.el (po-mode-map): Enable key binding for
'po-edit-comment-and-ediff' ('C-c C-c' and 'C-c C-#').
2001-11-18 Karl Eichwalder <ke@suse.de>
* po-mode.el (po-help-display-string): Adjust it.
2001-11-18 Karl Eichwalder <ke@suse.de>
* po-mode.el (po-team-name-to-code): Fix syntax for the last entry
(Zulu).
2001-11-11 Karl Eichwalder <ke@suse.de>
* po-mode.el (po-subedit-ediff): New function.
(po-edit-comment-and-ediff): New function.
(po-edit-msgstr-and-ediff): New function.
(po-subedit-mode-menu-layout): Add 'po-subedit-ediff'.
(po-subedit-mode-map): Add key binding for 'po-subedit-ediff'.
(po-mode-menu-layout): Add 'po-edit-comment-and-ediff' and
'po-edit-msgstr-and-ediff'.
(po-mode-map): Add key binding for 'po-edit-msgstr-and-ediff'.
2001-11-12 Karl Eichwalder <ke@suse.de>
* po-mode.el (po-subedit-mode-syntax-table): New variable.
(po-subedit-mode-map): Re-write according to po-mode-map and move
it to a better location.
2001-11-10 Karl Eichwalder <ke@suse.de>
* po-mode.el (po-find-file-coding-system-guts): Use
'po-with-temp-buffer' instead of 'with-temp-buffer'.
(po-msgfmt-version-check): Likewise.
2001-11-09 Dave Love <fx@gnu.org>
Bruno Haible <haible@clisp.cons.org>
* po-mode.el: Doc fixes.
(po-mode-map): Put all in defvar.
2001-08-23 Karl Eichwalder <ke@suse.de>
* po-mode.el (po-mode-map): Assign new Key bindings to avoid
clashes with moving actions:
'po-previous-fuzzy-entry' = 'F',
'po-previous-obsolete-entry' = 'O',
'po-previous-translated-entry' = 'T',
'po-previous-untranslated' = 'U',
'po-undo' = '_',
'po-other-window' = '0',
'po-select-auxiliary' = '\C-c\C-a'.
(po-help-display-string): Likewise.
2001-08-23 Karl Eichwalder <ke@suse.de>
* po-mode.el (po-next-translated-entry): Actually search for
'translated', not 'untranslated'.
2001-11-01 Karl Eichwalder <ke@suse.de>
* po-mode.el (po-msgfmt-version-check): Also accept pre-release
versions.
2001-10-31 Bruno Haible <haible@clisp.cons.org>
* gettextize.in: Renamed COPYING.LIB-2 to COPYING.LIB-2.0.
2001-10-30 Bruno Haible <haible@clisp.cons.org>
* po-mode.el (po-team-name-to-code): Extend the list using items from
src/msginit.c.
2001-10-26 Bruno Haible <haible@clisp.cons.org>
* gettextize.in: Use a different wording about aclocal.m4 if the
package uses automake.
2001-10-21 Bruno Haible <haible@clisp.cons.org>
* gettextize.in: Copy only ABOUT-NLS, intl/, po/.
2001-09-25 Bruno Haible <haible@clisp.cons.org>
Upgrade to automake-1.5.
* automake.diff: Remove file.
2001-09-08 Bruno Haible <haible@clisp.cons.org>
* gettextize.in: Don't copy installed jar files.
2001-08-23 Karl Eichwalder <ke@suse.de>
* po-mode.el (po-compute-counters): First save `current'
po-start-of-msgstr; use it to set `position' while looping over all
entries.
2001-08-20 Karl Eichwalder <ke@suse.de>
* po-mode.el (po-mode): Add newlines to fix layout problem calling
'C-h m'.
2001-08-18 Karl Eichwalder <ke@suse.de>
* po-mode.el (po-ensure-source-references): Use 'string-to-number'
instead of 'string-to-int'.
(po-msgfmt-version-check): Likewise.
2001-08-11 Karl Eichwalder <ke@suse.de>
* po-mode.el (po-edit-string): Set indent-line-function to
indent-relative; useful for editing --help messages.
2001-08-02 Karl Eichwalder <ke@suse.de>
* po-mode.el (po-find-charset): Drop 'interactive'. Use
'insert-file-contents-literally' to avoid side effects. Correct off
by 1 error.
2001-08-07 Karl Eichwalder <ke@suse.de>
* po-mode.el (po-subedit-mode-menu-layout): New definition.
(po-edit-string): Use it to provide a menu for po-subedit-mode.
2001-08-01 François Pinard <pinard@iro.umontreal.ca>
* po-mode.el (po-find-awk-string, po-mark-awk-string,
po-find-bash-string, po-mark-bash-string): New functions.
(po-preset-string-functions): Add awk and bash support.
2001-08-02 Karl Eichwalder <ke@suse.de>
* po-mode.el (po-find-file-coding-system-guts): Use ascii instead of
none.
(po-compute-counters): Don't start counting if there is not even a
header entry.
2001-07-26 Bruno Haible <haible@clisp.cons.org>
* automake.diff: Update for automake-1.4-p5.
2001-08-01 François Pinard <pinard@iro.umontreal.ca>
* po-mode.el: Optimize testing for XEmacs.
(po-auto-replace-revision-date): Do not quote t, as it evals to
itself.
(po-validate): Use the mode name instead of the constant PO to build
the validation buffer name.
(po-font-lock-keywords, po-find-charset,
po-find-file-coding-system-guts, po-find-file-coding-system): Adjust
some lines so they fit in 79 columns (pre-VT100).
(po-compute-counters): Use string-equal instead of string=, to be
consistent with the remainder of that code.
(po-find-charset): Avoid infinite loop on empty file.
2000-05-31 Hrvoje Niksic <hniksic@iskon.hr>
* po-mode.el (po-create-overlay, po-highlight, po-rehighlight,
po-dehighlight): Use XEmacs extent primitives.
2001-07-22 Bruno Haible <haible@clisp.cons.org>
* automake.diff: New file.
2001-08-02 Bruno Haible <haible@clisp.cons.org>
* gettextize.in: Change bug report address to
<bug-gnu-gettext@gnu.org>.
2001-07-14 Karl Eichwalder <ke@suse.de>
* po-mode.el (po-mode-abbrev-table): New variable.
(po-edit-string): Use it.
2001-07-13 Karl Eichwalder <ke@suse.de>
* po-mode.el (po-fade-out-entry): Replace yes-or-no-p by y-or-n-p;
obsoleting an entry isn't fatal.
2000-01-18 François Pinard <pinard@iro.umontreal.ca>
* po-mode.el (po-ensure-source-references): Correctly imply the file
name from the last which has been explicitly given.
2000-01-17 François Pinard <pinard@iro.umontreal.ca>
* po-mode.el (po-subedit-abort): Change variable names.
(po-seek-equivalent-translation): Call set-buffer instead of
select-buffer.
(po-subedit-cycle-auxiliary): Adapt to multiple edits.
2001-08-12 François Pinard <pinard@iro.umontreal.ca>
* po-mode.el (po-find-charset, po-compute-counters,
po-check-file-header, po-set-msgstr): Emacs 19 portability matters.
2000-01-03 François Pinard <pinard@iro.umontreal.ca>
* po-mode.el (po-check-file-header): Add a new line after default
header only for non-empty PO files.
1999-12-10 François Pinard <pinard@iro.umontreal.ca>
* po-mode.el (po-send-mail): Clarify some prompts.
Reported by Laurent Bourbeau.
1999-07-25 François Pinard <pinard@iro.umontreal.ca>
* po-mode.el (po-team-name-to-code): New variable.
(po-guess-archive-name): Use it.
1999-06-01 François Pinard <pinard@iro.umontreal.ca>
* po-mode.el (po-guess-archive-name, po-guess-team-address): Accept
more addresses, do not restrict to necessarily @li.org.
1998-12-06 François Pinard <pinard@iro.umontreal.ca>
* po-mode.el (po-guess-archive-name): Allow Free as well as GNU
for domain name prefix.
1998-05-15 François Pinard <pinard@iro.umontreal.ca>
* po-mode.el (po-any-msgid-regexp, po-any-msgstr-regexp,
po-msgstr-idx-keyword-regexp, po-obsolete-msgstr-regexp,
po-set-msgstr, po-obsolete-comment-regexp, po-get-comment): Enforce
#~ for obsolete entries. The tilde is not optional anymore.
1998-05-09 François Pinard <pinard@iro.umontreal.ca>
* po-mode.el (po-after-entry-regexp): Check if at end of line, rather
than for any character not being quoted. Else, M-u skips over
immediately previous untranslated entry, because backward pattern
extends beyond point. Reported by Kalle Niemitalo.
2001-07-13 Karl Eichwalder <ke@suse.de>
* po-mode.el (po-validate): Check for 'null-device; if not available
use "NUL" for windows-nt and windows-95 and /dev/null as fallback.
From Eli Zaretskii and François Pinard.
2000-01-03 François Pinard <pinard@iro.umontreal.ca>
* po-mode.el (po-preset-string-functions): New function.
(po-find-unknown-string, po-mark-unknown-string): New functions.
(po-find-c-string): Return a 3-element list.
(po-find-emacs-lisp-string): Likewise.
(po-mark-found-string): Simplify consequently.
(po-tags-loop-scan): Use po-preset-string-functions.
* po-mode.el (po-mark-c-string, po-mark-emacs-lisp-string): Have
marking functions to leave cursor after marked string. Do not return
updated end anymore.
* po-mode.el (po-mark-found-string, po-mark-translatable,
po-select-mark-and-mark): Other changes.
2000-01-02 François Pinard <pinard@iro.umontreal.ca>
* po-mode.el (po-tags-search): Better use the Emacs tags interface,
and simplified. Nested tags tables should be handled now.
(po-tags-loop-scan, po-tags-loop-operate): New functions.
(po-string-contents, po-string-buffer): New buffer local variables.
(po-next-file-list): Deleted. All usages adjusted.
2001-01-04 François Pinard <pinard@iro.umontreal.ca>
* po-mode.el (po-extract-part-unquoted): New function.
(po-extract-unquoted, po-skip-over-python-string): Use it.
* po-mode.el (po-skip-over-python-string): Missing parentheses.
Reported by Andreas Schwab.
* po-mode.el (po-find-python-string, po-mark-python-string,
po-skip-over-python-string): New functions.
(po-tags-search, po-mark-found-string): Use them in Python mode.
2001-08-13 François Pinard <pinard@iro.umontreal.ca>
* po-mode.el (po-mode): Issue message after running hooks rather than
before, augmenting the chances that the message does not get erased.
1999-07-25 François Pinard <pinard@iro.umontreal.ca>
* po-mode.el (po-match-string): New function.
(po-set-msgid): Use it.
(po-set-msgstr): Likewise.
(po-set-comment): Likewise.
(po-ensure-source-references): Likewise.
(po-guess-archive-name): Likewise.
(po-guess-team-address): Likewise.
2000-08-11 François Pinard <pinard@iro.umontreal.ca>
* po-mode.el: Move blocks of code around in view of later patches.
Do minor cosmetic changes. Correct name-buffer into buffer-name
whenever needed. Remove one case of spurious testing code.
Borrow the marking overlay if possible, do not creating a new one.
2000-01-24 François Pinard <pinard@iro.umontreal.ca>
* po-mode.el: Split portability matters in two. A minimum for
customisation to work, and the rest after the customisation page.
Reported by Martin v. Löwis.
2000-01-17 François Pinard <pinard@iro.umontreal.ca>
* po-mode.el: To avoid compilation diagnostics, move customisation
before portability matters and add some variable declarations.
1998-09-07 François Pinard <pinard@iro.umontreal.ca>
* po-mode.el: Merge make-local-variable within set whenever possible.
2001-07-06 Karl Eichwalder <ke@suse.de>
* po-mode.el (po-msgfmt-version-check): Check for version strings with
a single dot (e.g. 0.11) correctly.
2001-07-08 Karl Eichwalder <ke@suse.de>
* po-mode.el: Don't recommend to use po-mode for POT files.
(po-find-charset): New function.
(po-find-file-coding-system-guts): Use it to get rid of the 4096 limit.
If no charset found, use "none".
2001-07-07 Karl Eichwalder <ke@suse.de>
* po-mode.el (po-compute-counters): Don't count the header entry.
Reported by Bernd Schandl.
2001-07-02 Karl Eichwalder <ke@suse.de>
* po-mode.el (po-validate): Use private 'compile-command' and buffer
name for validation output.
2001-07-01 Karl Eichwalder <ke@suse.de>
* po-mode.el (po-mode): Use add-hook to call po-replace-revision-date
saving the buffer.
(po-quit): Don't call po-replace-revision-date.
(po-validate): Likewise.
Proposed by Bernd Schandl.
(po-auto-replace-revision-date): Change default to 't'; otherwise the
user will be asked too often.
2001-06-04 Karl Eichwalder <ke@suse.de>
* po-mode.el (po-edit-string): Set 'buffer-file-coding-system'
(for hints thanks to Eli Zaretskii).
2001-06-04 Karl Eichwalder <ke@suse.de>
* po-mode.el (po-msgfmt-version-check): New. Check for GNU gettext
0.10.36 or newer. Re-written by Stefan Monnier.
(po-validate): Use 'po-msgfmt-version-check'.
(po-validate): Use 'null-device' instead of literal "/dev/null".
Reported by Eli Zaretskii.
2001-09-13 Bruno Haible <haible@clisp.cons.org>
* gettext-0.10.40 released.
2001-09-13 Bruno Haible <haible@clisp.cons.org>
* gettextize.in: Don't copy intl/COPYING*; these files may confuse
the user of the enclosing package.
2001-07-24 Bruno Haible <haible@clisp.cons.org>
* gettext-0.10.39 released.
2001-07-11 Bruno Haible <haible@clisp.cons.org>
* po-mode.el (po-default-file-header): Replace 8-bit with 8bit.
2001-07-01 Bruno Haible <haible@clisp.cons.org>
* po-mode.el (po-content-type-charset-alist): Add entries for
ISO-8859-15, GB2312, EUC-JP, EUC-KR, BIG5, SHIFT_JIS, TIS-620, VISCII.
2001-06-25 Bruno Haible <haible@clisp.cons.org>
* po-mode.el (po-find-file-coding-system): Make it work in XEmacs 20
as well. Based on a patch by Enrico Scholz
<enrico.scholz@informatik.tu-chemnitz.de>.
2001-05-23 Bruno Haible <haible@clisp.cons.org>
* gettext-0.10.38 released.
2001-05-22 Bruno Haible <haible@clisp.cons.org>
* gettextize.in: Copy plural.c and touch it afterwards.
2001-05-21 Alexandre Duret-Lutz <duret_g@epita.fr>
* gettextize.in: Check for configure.ac in addition to configure.in.
2001-05-12 Paul Eggert <eggert@twinsun.com>
* gettextize.in: Replace "test -e" with "test -f", since the 'test'
builtin of Solaris 8 /bin/sh doesn't grok "test -e".
2001-05-11 Bruno Haible <haible@clisp.cons.org>
* gettextize.in: Tell the user about glibc21.m4.
2001-05-09 Bruno Haible <haible@clisp.cons.org>
* po-mode.el (po-replace-revision-date): For the timezone, use RFC 822
format [+/-]HHMM, not [+/-]HH:MM. Reported by Jan D.
2001-04-19 Bruno Haible <haible@clisp.cons.org>
* gettext-0.10.37 released.
2001-03-29 Bruno Haible <haible@clisp.cons.org>
* gettext-0.10.36 released.
2001-03-25 Bruno Haible <haible@clisp.cons.org>
* combine-sh: Remove file.
* Makefile.am (EXTRA_DIST): Remove it.
2001-03-22 Bruno Haible <haible@clisp.cons.org>
* po-mode.el (po-default-file-header): Replace ENCODING with 8-bit.
2001-03-21 Bruno Haible <haible@clisp.cons.org>
* gettextize.in: Mention where to get config.guess and config.sub.
2001-03-20 Bruno Haible <haible@clisp.cons.org>
* gettextize.in: Verbosity: describe each action being done. Make the
po/ChangeLog entry more intelligent.
2001-03-10 Karl Eichwalder <ke@suse.de>
* po-mode.el (po-font-lock-keywords): Respect entry types
'msgid_plural' and 'msgstr[]'.
'%*s' is a valid sformat, too.
(po-font-lock-keywords): Fix regexp; '[]' part is optional.
(po-any-msgstr-regexp): Also match msgstr[] fields.
(po-msgstr-idx-keyword-regexp): New variable.
(po-set-msgstr): Respect indexed msgstr entries; use
`po-msgstr-idx-keyword-regexp'.
2001-03-09 Bruno Haible <haible@clisp.cons.org>
* gettextize.in: Update copyright year. Add code to update
po/ChangeLog and tell the user about the m4 macros. Don't attempt to
run config.status, because aclocal.m4 is not ready.
2001-03-03 Karl Eichwalder <ke@suse.de>
* po-mode.el (po-subedit-exit): Run po-subedit-exit-hook before
leaving the edit buffer.
2001-02-10 Bruno Haible <haible@clisp.cons.org>
* gettextize.in: Bail out if $gettext_dir doesn't exist.
2001-02-07 Bruno Haible <haible@clisp.cons.org>
* gettextize.in: Fix bug in 2000-12-08 patch.
2001-01-28 Bruno Haible <haible@clisp.cons.org>
* po-mode.el: Call autoload with 4 arguments.
(po-content-type-charset-alist): Change cars to uppercase.
(po-find-file-coding-system): Uppercase charset for lookup in
po-content-type-charset-alist.
2001-01-06 Bruno Haible <haible@clisp.cons.org>
* magic.add: Remove file. Has been integrated into the 'file' package.
* Makefile.am (EXTRA_DIST): Remove it.
2000-12-30 Bruno Haible <haible@clisp.cons.org>
* locale.alias: Move to ../intl.
* Makefile.am (EXTRA_DIST): Remove locale.alias.
(localedir, locale_DATA): Remove variables.
2000-12-08 Bruno Haible <haible@clisp.cons.org>
* gettextize.in: Preserve RCS and CVS subdirs in intl/.
Reported by Santiago Vila <sanvila@unex.es>.
* gettextize.in: Test for ABOUT-NLS, not NLS.
2000-10-26 GOTO Masanori <gotom@debian.or.jp>
* locale.alias: Add ja_JP.ujis alias.
2000-08-31 Ulrich Drepper <drepper@redhat.com>
* locale.alias: Add aliases for bokmal and nynorsk.
2000-08-21 Ulrich Drepper <drepper@redhat.com>
* locale.alias: Add aliases for Korean.
2000-08-01 Ulrich Drepper <drepper@redhat.com>
* locale.alias: Update japanese aliases.
2000-05-06 Ulrich Drepper <drepper@redhat.com>
* gettextize.in: Remove code to test for version of the m4 files.
* po-mode.el: A few more changes by François Pinard.
1998-05-03 François Pinard <pinard@iro.umontreal.ca>
* po-mode.el (po-create-overlay) [po-XEMACS]: No argument.
Reported by Ulrich Drepper.
1997-10-18 François Pinard <pinard@iro.umontreal.ca>
* po-mode.el (po-tags-search, po-mark-found-string): C++ as C.
(po-find-c-string): Skip C++ comments as well.
1998-05-10 François Pinard <pinard@iro.umontreal.ca>
* po-mode.el (po-mode) [po-XEMACS]: Explicitely add menus.
Reported by Hrvoje Niksic.
* po-mode.el (po-mode-menu-layout): Give real access to auxiliary
files through the menu, instead of leaving menu entries inactive.
1998-05-15 Ulrich Drepper <drepper@cygnus.com>
* tcl_gettext.c (tcl_gettext): Replace illegal with invalid.
1998-05-01 08:47 Ulrich Drepper <drepper@cygnus.com>
* gettext-0.10.35 released.
1998-03-30 François Pinard <pinard@iro.umontreal.ca>
* po-mode.el (po-tags-search, po-mark-translatable,
po-select-mark-and-mark): Call interactive after the doc string,
instead of before.
Reported by Tom Tromey.
1998-04-27 21:17 Ulrich Drepper <drepper@cygnus.com>
* po-mode.el: Update from most recent version.
* gettextize.in: Use aclocaldir from configuration.
1997-09-04 François Pinard <pinard@iro.umontreal.ca>
* po-mode.el: Rename po-middle-of-entry to po-start-of-msgstr, add
variable po-start-of-msgid. Use it whenever appropriate.
* po-mode.el (po-find-file-coding-system): New function.
Reported by Ken'ichi Handa.
* po-mode.el: Normalise string= to string-equal.
* po-mode.el (po-send-mail): Allow for mailing to the team.
(po-guess-team-address): New function.
1997-09-02 François Pinard <pinard@iro.umontreal.ca>
* po-mode.el (po-set-comment): Unused variable buffer.
(po-edit-string): Unused variables start, middle, end and obsolete.
(po-tags-search): Unused variable find-string.
* po-mode.el (po-check-lock): Create the work buffer as required, to
avoid diagnostics about selecting a deleted buffer, after a user
explicitly killed the work buffer instead of exiting it normally.
Reported by Hrvoje Niksic.
* po-mode.el: New variable po-mode-menu-layout.
(po-mode): Establish a bar mode menu if possible.
Reported by Nils Naumann.
* po-mode.el: Decide set-translation-domain before using it.
This avoids a byte-compilation warning.
* po-mode.el (po-set-comment): Rearrange wrong conditional flow.
Translator comments were duplicated, when contents were unchanged.
Reported by Enrique Melero.
1997-09-01 François Pinard <pinard@iro.umontreal.ca>
* po-mode.el (po-highlight, po-dehighlight): New functions.
New globals: po-highlight-p, po-highlight-face and po-overlay.
(po-edit-msgstr): Highlight the msgid string while editing.
(po-tags-search): Highlight found string.
(po-mark-found-string): Unhilight string before replacing it.
Reported by Jim Meyering, Michel Robitaille and Ulrich Drepper.
* po-mode.el (po-set-field): Tells if buffer was modified.
(po-edit-msgstr): Never make fuzzy an entry which is unmodified.
* po-mode.el: Add M command, and variables po-compose-mail-function,
po-translation-project-address and po-gzip-uuencode-command.
(po-guess-archive-name, po-send-mail): New functions.
Reported by Karl Eichwalder.
1997-08-31 François Pinard <pinard@iro.umontreal.ca>
* po-mode.el (po-replace-revision-date): Enforce ISO 8601 zones.
Reported by Enrique Melero Gómez, Karl Eichwalder, Max de
Mendizabal and Santiago Vila Doncel.
* po-mode.el (po-edit-string): Expand tabs while editing
translations. Reported by Göran Uddeborg.
* po-mode.el: Accept C-c C-k to abort recursive edits.
Reported by Göran Uddeborg and Hrvoje Niksic.
1997-06-02 Ben Pfaff <pfaffben@pilot.msu.edu>
* po-mode.el (po-find-c-string, po-extract-unquoted): Process ANSI
string concatenation and K&R escaped newlines.
1997-03-02 Hrvoje Niksic <hniksic@srce.hr>
* po-mode.el (po-help): To continue, also accept things like a
mouse press or an arrow key.
1996-11-12 François Pinard <pinard@iro.umontreal.ca>
* po-mode.el: Alter po-font-lock-keywords to properly highlight C
formats, when using an upper case letter as formatting functor.
* po-mode.el: If available, prefer force-mode-line-update builtin.
* po-mode.el: Use our own buffer-substring, defining it as
buffer-substring-no-properties if available. Because of text
properties, buffer-substring does not always return a string.
* po-mode.el (po-consider-source-path): Ensure a trailing slash.
1996-05-13 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* po-mode.el (po-eval-requoted, po-extract-unquoted): Correct
missing or spurious backslashes in some regexps.
1997-08-01 15:49 Ulrich Drepper <drepper@cygnus.com>
* Makefile.am (AUTOMAKE_OPTIONS): Require version 1.2.
1997-04-12 Hrvoje Niksic <hniksic@srce.hr>
* po-mode.el: Customize.
1997-03-10 06:56 Ulrich Drepper <drepper@cygnus.com>
* elisp-comp: Use EMACS environment variable is available instead
of always executing emacs.
1996-12-03 23:24 Ulrich Drepper <drepper@cygnus.com>
* gettextize.in: Update --help and --version texts.
1996-11-22 04:45 Ulrich Drepper <drepper@cygnus.com>
* Makefile.am (EXTRA_DIST): Add locale.alias.
1996-11-21 23:11 Ulrich Drepper <drepper@cygnus.com>
* Makefile.am: Remove rules for ELisp handling. Automake now
knows what to do.
1996-10-28 23:09 Ulrich Drepper <drepper@cygnus.com>
* gettextize.in: Remove -v from help message. Change format of
--version text according to last GNU coding standard. Don't print
help message for unknown option. Instead print "Try `..."
message.
1996-10-19 17:41 1996 Ulrich Drepper <drepper@cygnus.com>
* locale.alias: Language for czech entry must be cs.
1996-09-18 00:29 François Pinard <pinard@progiciels-bpi.ca>
* po-mode.el (po-font-lock-keywords): Correct highlighting of
formats like %3d.
1996-08-19 François Pinard <pinard@iro.umontreal.ca>
* po-mode.el: Restructured to avoid all byte-compilation warnings.
Highlighting using `hilit19' is being deprecated, font lock code
should now automatically be activated whenever available.
1996-07-15 François Pinard <pinard@iro.umontreal.ca>
* po-mode.el: po-mode.el (po-kill-msgstr): Ensure po-entry-type is
always defined before decreasing counter.
1996-07-15 01:08 Ulrich Drepper <drepper@cygnus.com>
* gettextize.in (gettext_dir): Remove warning that files will be
removed. It's not really necessary since the -f option is
necessary. Suggested by François Pinard.
1996-06-26 18:40 Ulrich Drepper <drepper@cygnus.com>
* po-mode.el: Added ELisp support. Patch by François Pinard.
1996-06-18 15:12 Ulrich Drepper <drepper@cygnus.com>
* gettextize.in (aclocal_version): new variable. Value determined
by configure. This finally makes the check of the aclocal.m4
version number correct because this number need not be the same as
the version number of the package.
1996-06-06 02:02 Ulrich Drepper <drepper@cygnus.com>
* gettextize.in: Rewrite copying now that files are kept in
different directories and don't use funny prefixes anymore.
1996-06-05 16:36 Ulrich Drepper <drepper@cygnus.com>
* Makefile.am (DISTCLEANFILES): Renamed from CLEANFILES and
changed $(lisp_DATA) to $(ELCFILES).
1996-06-03 00:46 Ulrich Drepper <drepper@cygnus.com>
* Makefile.am (elc_DATA): Rename to elc_SCRIPTS so that
distribution wents smooth.
1996-06-02 21:16 Ulrich Drepper <drepper@cygnus.com>
* Makefile.am (SUFFIXES): New variable. Automake wants it this
way to introduce new suffixes.
* Makefile.am: Initial revision.
1996-06-01 18:20 Ulrich Drepper <drepper@cygnus.com>
* Makefile.in (default): Add default rule because AIX' make does
not understand multiple goals in default rule.
* Makefile.in (DISTFILES): Rename README-TCL to README-Tcl.
* gettextize.in: Implement test for correct aclocal.m4 version.
1996-04-06 02:40 Ulrich Drepper <drepper@myware>
* po-mode.el: Apply François' patch for new default values of
configuration variables and new header entry format.
1996-04-02 18:56 Ulrich Drepper <drepper@myware>
* Makefile.in (all-gettext): New goal. Same as all.
1996-04-02 03:18 François Pinard <pinard@iro.umontreal.ca>
* po-mode.el: * Let po-show-source-context update
po-reference-cursor itself, and display to the minibuffer the
relative and maximum position of the shown reference in the list
of collected references. Callers adjusted accordingly.
. Do not generate tildes while reconstructing non-obsolete
comments.
. Do merge attributes on a single `#,' line. Using the non-regexp
version of the search was causing the generation of another one.
. Remove a spurious trailing comma while removing the last
attribute.
. Limit the search for source references to the msgstr line. This
does not correct any bug, but is more consistent.
1996-03-31 23:32 François Pinard <pinard@iro.umontreal.ca>
* po-mode.el: * Small corrections to the help page. Reported by
Karl Eichwalder.
* Change po-edit-mode-map to po-subedit-mode-map and
po-mode-edit-hook to po-subedit-mode-hook. The previous names
were not consistent. Reported by Karl Eichwalder.
* Repair RET, completely broken for multi-lines, maybe showing a
regexp bug in Emacs(?). See the FIXME in po-extract-unquoted.
Reported by Karl Eichwalder.
1996-03-31 22:36 Ulrich Drepper <drepper@myware>
* gettextize.in (prefix): Define from @prefix@. Is used in
gettext_dir definition. Reported by Jim Meyering.
1996-03-28 19:11 Karl Eichwalder <ke@ke.Central.DE>
* gettextize.in (gettext_dir): Set to @datadir@/gettext.
1996-03-26 21:27 Ulrich Drepper <drepper@myware>
* Makefile.in (datadir): Initialize from @datadir@. Reported by
Karl Eichwalder.
1996-03-25 09:52 François Pinard <pinard@iro.umontreal.ca>
* po-mode.el: * Correct documentation mistakes in short help.
* Accept both # and #~ for obsolete comments, but use #~ when
generating them.
* Recognize \NNN octal notation for characters in PO file strings,
however, never produce such horror.
1996-03-25 03:51 Ulrich Drepper <drepper@myware>
* po-mode.el: Some last minute changes by François Pinard.
1996-03-24 18:51 Ulrich Drepper <drepper@myware>
* po-mode.el (po-confirm-and-quit): Recognize both #, and #! but
prefer producing #,.
* Rephrase messages about location stack contents
* Clear out message when user refuses quitting.
1996-03-23 14:34 François Pinard <pinard@iro.umontreal.ca>
* Implement po-default-file-header.
Reported by Karl Eichwalder.
* Rename po-auto-select to po-auto-select-entry.
* Revise text of all disruptive questions, try to alleviate
them, avoid them if possible. Clear the message area sometimes.
* Correct a bug by which `#! fuzzy' was inserted before the
white line, instead of after, for PO files having no `#' line
of any kind.
* Correct the message count updating in po-kill-msgstr and
po-yank-msgstr.
* Allow for po-auto-edit-with-msgid to work, when
po-edit-msgstr was called on an untranslated immediately after
loading a PO file.
* po-quit may select all kind of not fully processed entries,
rather than just untranslate ones.
Rebound commands:
* TAB moves to LFD for po-msgid-to-msgstr.
* z moves to DEL for po-fade-out-entry.
New commands:
* TAB is po-unfuzzy.
* SPC is po-auto-select.
* t is po-next-translated entry.
* M-t is po-previous-translated-entry.
* E is po-edit-out-full.
Improved commands:
* DEL (po-fade-out-entry) makes the entry fuzzy as first step,
and request confirmation for some transitions.
* LFD (po-msgid-to-msgstr) requests confirmation if entry was
already translated.
* v (po-validate): Pass the -v flag to msgfmt.
* q (po-confirm-and-quit): Use milder confirmation.
* Implemented variables po-auto-edit-with-msgid,
po-auto-fuzzy-on-edit, po-auto-select-on-unfuzzy, and
po-auto-replace-revision-date.
PO header management:
* PO-Revision-Date might be automatically updated.
Reported by Karl Eichwalder.
* A normalized PO file header is automatically created if it
not exists. Any previous PO file header is kept, obsoleted.
Various internal cleanups:
* Revised the PO mode summary display.
* ...-hooks renamed ...-hook, per word of Richard Stallman.
* po-obsolete-flag replaced by more general po-entry-type.
* po-appropriate-counter, po-increase-appropriate-counter and
po-decrease-appropriate-counter are replaced by po-type-counter,
po-decrease-type-counter and po-increase-type-counter.
Overall counting logic revised and cleaned up.
* The concept of being after last entry disappears. Being
after last entry is equivalent to being on last entry. And
since there is at least the PO header entry, and an empty PO
file is not possible anymore: simplified code accordingly.
* po-add-attribute, po-delete-attribute: New functions.
* po-offer-validation disappears, as (buffer-modified-p) may
be used instead.
1996-03-14 16:55 François Pinard <pinard@iro.umontreal.ca>
* po-mode.el: Inexact entries are now called fuzzy. Change
regular expression and function names.
1996-03-14 11:38 François Pinard <pinard@iro.umontreal.ca>
* po-mode.el: Rename po-mode-hooks to po-mode-edit-hooks.
* po-mode.el: Suggest accepting .pot and embedded .po. as triggers
for PO editing mode, besides .po and .pox.
* PO mode help display has been revised to fit in 23 lines,
and present some more yet unimplemented commands. PO mode
initially suggests using `h' or `?' for documentation.
* Many variables and functions have been renamed for more
clarity and consistency, too numerous to be detailed here.
* Reorganization of key-bindings. This restores to M-w and M-y
their usual meaning, and free some keys for to-be-implemented
commands: the a/M-a/A/M-A series for auxiliary files, c/M-c
for compendium files, and l/M-l/L/M-L series for lexicon files.
. Commands u, v, o and q have been renamed U, V, O and Q
(po-undo, po-validate, po-other-window and po-quit).
. Command v replaces old command V (po-mode-version).
. u and SPC replace e (po-next-untranslated-entry).
M-u replaces M-e (po-previous-untranslated-entry).
. o replaces M-n and M-SPC (po-next-obsolete-entry).
M-o replaces M-p and M-DEL (po-previous-obsolete-entry).
. SPC, DEL, and M-RET are no more po-next-entry,
po-previous-entry and po-edit-comment.
. r replaces l (po-pop-location).
. s (po-cycle-source-reference) replaces c (po-cycle-reference).
M-s (po-select-source-reference) replaces M-c (po-select-reference).
S (po-consider-source-path) replaces d (po-add-path).
M-S (po-ignore-source-path) replaces M-d (po-delete-path).
. K, W and Y replace M-k, M-w and M-y (po-kill-comment,
po-kill-ring-save-comment and po-yank-comment).
* New command q (po-confirm-and-quit).
1996-03-13 13:16 Karl Eichwalder <ke@ke.Central.DE>
* po-mode.el (po-edit-string): run hook `po-edit-hooks'.
1996-03-09 12:39 Ulrich Drepper <drepper@myware>
* po-mode.el (po-keywords): Add N_.
1996-01-15 02:58 François Pinard <pinard@iro.umontreal.ca>
* gettextize.in: Better message about aclocal.m4 change.
1995-12-19 22:41 Ulrich Drepper <drepper@myware>
* README-TCL, tcl_gettext.c: Initial revision.
* Makefile.in (DISTFILES): Add tcl_gettext and README-TCL.
1995-12-19 22:12 Ulrich Drepper <drepper@myware>
* Makefile.in (Makefile, gettextize): Explicitly use $(SHELL) for
running shell scripts.
1995-12-16 15:31 Ulrich Drepper <drepper@myware>
* gettextize.in: Implement -c option: always copy files.
Requested by Roland McGrath.
1995-12-05 11:41 Larry Schwimmer <rosebud@cyclone.stanford.edu>
* Makefile.in (install-data): Make sure $(localedir) exists.
1995-11-27 02:50 Sakai Kiyotaka <ksakai@netwk.ntt-at.co.jp>
* locale.alias: New entry for Japanese.
1995-11-24 23:53 Ulrich Drepper <drepper@myware>
* po-mode.el (po-quit): Always clear the message area after y-or-n-p.
1995-11-11 16:30 Ulrich Drepper <drepper@myware>
* po-mode.el: Implement searching of inexact entries.
* po-mode.el: Implement po-version.
1995-11-08 01:46 Ulrich Drepper <drepper@myware>
* po-mode.el:
Hilit file names and line numbers in #: with function-name face.
* po-mode.el: Add support for XEmacs' font-lock.el.
* po-mode.el:
Patches by François: enable hilit, handle multi-line #: lines, and
don't pass -v argument to msgfmt.
1995-11-06 15:52 Ulrich Drepper <drepper@myware>
* po-mode.el: msgfmt behaves now well again. Return to use
/dev/null as output file for verification.
1995-11-05 19:39 Ulrich Drepper <drepper@myware>
* Makefile.in (dist-gettext): Make synonym for dist.
1995-11-05 15:40 Ulrich Drepper <drepper@myware>
* Makefile.in (dist): Suppress error message when ln failed.
Get files from $(srcdir) explicitly.
1995-11-01 10:39 Ulrich Drepper <drepper@myware>
* gettextize.in:
Don't use "!" as negation; not all versions of sh support it. Patch
by Tom Tromey.
1995-10-31 20:46 Ulrich Drepper <drepper@myware>
* po-mode.el (po-msgfmt-program):
Variable which contains name of the msgfmt program.
(po-validate): Use above variable.
1995-10-31 19:12 Tom Tromey <tromey@cambric.colorado.edu>
* gettextize.in: Don't use "!" as negation; not all versions of sh
support it.
1995-10-30 22:22 Ulrich Drepper <drepper@myware>
* po-mode.el (po-validate):
Protect the previous value of compile-command.
Change by François Pinard.
1995-10-29 12:11 Ulrich Drepper <drepper@myware>
* gettextize.in:
Change text of trailing message about aclocal.m4 changing. Suggested
by François Pinard.
* Makefile.in (INSTALL_PROGRAM): Not used anymore.
(INSTALL_SCRIPT): New variable,
(install-exec): Install gettextize using INSTALL_SCRIPT.
* po-mode.el (po-eval-requoted): Add space in description.
* Makefile.in: Remove Emacs local variable setting.
1995-10-28 22:09 Ulrich Drepper <drepper@myware>
* Makefile.in (install-src): Move some rules from install-data.
(install-data): Add installation of locale.alias.
* locale.alias: Initial revision
1995-10-28 18:08 Ulrich Drepper <drepper@myware>
* po-mode.el: Apply latest patch by François.
1995-09-23 14:34 Ulrich Drepper <drepper@myware>
* gettextize.in:
Run config.status shell script if this is exists and is selected. This
is always necessary if one updates the intl/ dir.
1995-09-20 22:26 Ulrich Drepper <drepper@myware>
* gettextize.in:
Try to remove files in root and po/ dir before linking. If this is
not done re-linking to the same file will cause an error.
1995-09-07 00:21 Ulrich Drepper <drepper@myware>
* gettext-sh: Protect IFS assignments.
1995-08-22 22:12 Ulrich Drepper <drepper@myware>
* gettextize.in (usage):
Rearrange help message. Now describe -f option.
Reported by François Pinard.
1995-08-19 23:32 Ulrich Drepper <drepper@myware>
* gettextize.in: Add missing terminating quotes.
* Makefile.in (INSTALL_PROGRAM):
*Do* use -m 755. Autoconf does not set any mode.
* Makefile.in (install-src):
Make behave like install. I.e. really install
gettextize and the .elc files.
1995-08-19 15:08 Ulrich Drepper <drepper@myware>
* gettextize.in:
Some nicety changes of shell programming by François Pinard.
* po-mode.el (po-search-path): Extend by "../".
* gettextize.in: Protect against relative source paths.
Avoid exit an second level shell.
* gettext-sh: Better comments: By François Pinard.
* Makefile.in (INSTALL_PRG): Don't define mode ourself.
(uninstall) Remove gettextize.
* gettextize.in:
intl/VERSION is now a real file and must not be generated here.
1995-08-18 12:05 Ulrich Drepper <drepper@myware>
* gettext-sh: Use -s option for gettext instead of --shell-script.
1995-08-15 10:49 Ulrich Drepper <drepper@myware>
* Makefile.in (all, check):
Add gettextize to dependencies, so that install need not
build anything.
1995-08-15 07:13 Ulrich Drepper <drepper@myware>
* gettextize.in: Add intl/VERSION file.
* gettextize.in: Remove target file for root- and po- file first.
* gettextize.in:
Files installed in top directory of package are now preceded by root-.
All other are ignore (esp aclocal.m4).
1995-08-14 23:50 Ulrich Drepper <drepper@myware>
* Makefile.in (exec_prefix, bindir):
Directories needed for installing gettextize.
(transform): Standard GNU program name transformation.
(INSTALL_PROGRAM): Program to install gettextize as executable.
(DISTFILES): Remove makelinks.in. Distribute gettextize.in instead.
(install-src): Install gettextize in selected binary directory.
* gettextize.in: Initial revision
1995-08-10 22:18 Ulrich Drepper <drepper@myware>
* gettext-sh: Fix typos. Reported by François Pinard.
(TEXTDOMAIN): Set value from ${PACKAGE-NAME} variable and document it.
1995-08-08 21:45 Ulrich Drepper <drepper@myware>
* Makefile.in (DISTFILES): Add locale.alias.
1995-08-07 23:48 Ulrich Drepper <drepper@myware>
* Makefile.in (DISTFILES): gettext.perl moved from intl/.
gettext-sh: New file.
* gettext-sh: Initial revision.
* elisp-comp:
Use `rm -fr $tempdir' instead of `rm -f $tempdir/*; rmdir $tempdir'
because some NFS implementation create .nfsxxx files which are
not caught be the *. Reported by Paul Nevai.
1995-08-04 22:38 Ulrich Drepper <drepper@myware>
* Makefile.in (.el.elc):
Include François' wonderful pun to highlight warning text.
* Makefile.in (distclean): Remove makelinks.
* Makefile.in (dist): Remove `copying instead' message.
1995-08-02 19:44 Ulrich Drepper <drepper@myware>
* Makefile.in (DISTFILES): makelinks.in instead of makelinks-sh.
* makelinks.in: First try making symbolic links.
Rename to makelinks.in because it will be configure by
config.status.
1995-08-01 15:54 Ulrich Drepper <drepper@myware>
* po-mode.el: Fixes to run on DEMACS.
Provided by François Pinard.
* Makefile.in (check): Make same as all.
1995-08-01 10:32 Ulrich Drepper <drepper@myware>
* makelinks-sh: Implement option handling.
When intl/ subdir exist give warning and exit unless option -f
is given.
Use ${echo} in place where translations will be necessary.
1995-07-26 01:24 Ulrich Drepper <drepper@myware>
* makelinks-sh: Update for correct intl_files list.
Handle existing directories.
Handle non-existing ln and/or ln -s.
Mostly by François Pinard.
1995-07-22 01:14 Ulrich Drepper <drepper@myware>
* Makefile.in (prefix,datadir,lispdir): New definitions.
(SITELISPDIR): Remove variable.
(all): Now build *.elc files.
(install,uninstall): Specify complete path of files to delete.
1995-07-20 00:03 Ulrich Drepper <drepper@myware>
* Makefile.in (DISTFILES): elisp-comp was missing.
1995-07-18 23:53 Ulrich Drepper <drepper@myware>
* po-mode.el: Latest version by François. This version allows
scanning C source code for translatable strings and interactive
construction of the .po file. The string matching heuristic is
due to Richard Stallman.
1995-07-18 01:32 Ulrich Drepper <drepper@myware>
* Makefile.in (DISTFILES): Add magic.add. Comes from ../.
* po-mode.el, makelinks, combine-sh: Moved to here from ../intl/.
magic.add: Moved to here from ../.
* Makefile.in: Initial revision
|