- Notifications
You must be signed in to change notification settings - Fork5
Commit16910e4
committed
Next version of patch.
Now with documentation update and disabling of UTF conversion for Tcl <=8.0On Fri, 24 Aug 2001, Vsevolod Lobko wrote:> On Thu, 23 Aug 2001, Tom Lane wrote:>> > > Is this looks better?> >> > It does, but one small gripe: the lack of semicolons will probably cause> > pg_indent to mess up the indentation. (I know emacs' autoindent mode> > will not work nicely with it, either.) Please set up the macros so that> > you write> >> > UTF_BEGIN;> > Tcl_DStringAppend(&unknown_src, UTF_E2U(part), -1);> > UTF_END;> >> > and then I'll be happy.>> Attached revised patch>> > Your point about overhead is a good one, so I retract the gripe about> > using a configure switch. But please include documentation patches to> > describe the configure option in the administrator's guide (installation> > section).>> This patch still uses configure switch for enabling feature.>> For enabling based on tcl version we have 2 posibilites:> 1) having feature enabled by default, but in pltcl.c check for tcl> version and disable it for old versions> 2) enable or disable at configure time based on tcl version, but there> are problem - current configure don't checks for tcl version at all> and my configure skills not enought for adding this>Vsevolod Lobko1 parent37c0b64 commit16910e4
File tree
4 files changed
+77
-14
lines changed- doc/src/sgml
- src
- include
- pl/tcl
4 files changed
+77
-14
lines changedLines changed: 15 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
409 | 409 |
| |
410 | 410 |
| |
411 | 411 |
| |
| 412 | + | |
| 413 | + | |
| 414 | + | |
| 415 | + | |
| 416 | + | |
| 417 | + | |
| 418 | + | |
| 419 | + | |
| 420 | + | |
| 421 | + | |
| 422 | + | |
| 423 | + | |
| 424 | + | |
| 425 | + | |
| 426 | + | |
412 | 427 |
| |
413 | 428 |
| |
414 | 429 |
| |
|
Lines changed: 12 additions & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 |
| - | |
| 1 | + | |
2 | 2 |
| |
3 | 3 |
| |
4 | 4 |
| |
| |||
683 | 683 |
| |
684 | 684 |
| |
685 | 685 |
| |
| 686 | + | |
| 687 | + | |
| 688 | + | |
| 689 | + | |
| 690 | + | |
| 691 | + | |
| 692 | + | |
| 693 | + | |
| 694 | + | |
| 695 | + | |
| 696 | + | |
686 | 697 |
| |
687 | 698 |
| |
688 | 699 |
| |
|
Lines changed: 4 additions & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
8 | 8 |
| |
9 | 9 |
| |
10 | 10 |
| |
11 |
| - | |
| 11 | + | |
12 | 12 |
| |
13 | 13 |
| |
14 | 14 |
| |
| |||
84 | 84 |
| |
85 | 85 |
| |
86 | 86 |
| |
| 87 | + | |
| 88 | + | |
| 89 | + | |
87 | 90 |
| |
88 | 91 |
| |
89 | 92 |
| |
|
Lines changed: 46 additions & 12 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
31 | 31 |
| |
32 | 32 |
| |
33 | 33 |
| |
34 |
| - | |
| 34 | + | |
35 | 35 |
| |
36 | 36 |
| |
37 | 37 |
| |
| |||
59 | 59 |
| |
60 | 60 |
| |
61 | 61 |
| |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
62 | 74 |
| |
63 | 75 |
| |
64 | 76 |
| |
| |||
333 | 345 |
| |
334 | 346 |
| |
335 | 347 |
| |
336 |
| - | |
| 348 | + | |
| 349 | + | |
| 350 | + | |
337 | 351 |
| |
338 | 352 |
| |
339 | 353 |
| |
| |||
613 | 627 |
| |
614 | 628 |
| |
615 | 629 |
| |
616 |
| - | |
| 630 | + | |
| 631 | + | |
| 632 | + | |
617 | 633 |
| |
618 | 634 |
| |
619 | 635 |
| |
| |||
715 | 731 |
| |
716 | 732 |
| |
717 | 733 |
| |
718 |
| - | |
| 734 | + | |
| 735 | + | |
| 736 | + | |
719 | 737 |
| |
720 | 738 |
| |
721 | 739 |
| |
| |||
777 | 795 |
| |
778 | 796 |
| |
779 | 797 |
| |
| 798 | + | |
780 | 799 |
| |
781 | 800 |
| |
782 | 801 |
| |
783 | 802 |
| |
784 |
| - | |
| 803 | + | |
785 | 804 |
| |
786 | 805 |
| |
| 806 | + | |
787 | 807 |
| |
788 | 808 |
| |
789 | 809 |
| |
| |||
929 | 949 |
| |
930 | 950 |
| |
931 | 951 |
| |
932 |
| - | |
| 952 | + | |
| 953 | + | |
| 954 | + | |
933 | 955 |
| |
934 | 956 |
| |
935 | 957 |
| |
| |||
1230 | 1252 |
| |
1231 | 1253 |
| |
1232 | 1254 |
| |
| 1255 | + | |
1233 | 1256 |
| |
1234 | 1257 |
| |
1235 |
| - | |
| 1258 | + | |
1236 | 1259 |
| |
1237 | 1260 |
| |
| 1261 | + | |
1238 | 1262 |
| |
1239 | 1263 |
| |
1240 | 1264 |
| |
| |||
1558 | 1582 |
| |
1559 | 1583 |
| |
1560 | 1584 |
| |
1561 |
| - | |
| 1585 | + | |
| 1586 | + | |
| 1587 | + | |
1562 | 1588 |
| |
1563 | 1589 |
| |
1564 | 1590 |
| |
| |||
1794 | 1820 |
| |
1795 | 1821 |
| |
1796 | 1822 |
| |
1797 |
| - | |
| 1823 | + | |
| 1824 | + | |
| 1825 | + | |
1798 | 1826 |
| |
1799 | 1827 |
| |
1800 | 1828 |
| |
| |||
2078 | 2106 |
| |
2079 | 2107 |
| |
2080 | 2108 |
| |
| 2109 | + | |
2081 | 2110 |
| |
2082 | 2111 |
| |
2083 |
| - | |
| 2112 | + | |
2084 | 2113 |
| |
2085 | 2114 |
| |
| 2115 | + | |
2086 | 2116 |
| |
2087 | 2117 |
| |
2088 | 2118 |
| |
| |||
2377 | 2407 |
| |
2378 | 2408 |
| |
2379 | 2409 |
| |
2380 |
| - | |
| 2410 | + | |
| 2411 | + | |
| 2412 | + | |
2381 | 2413 |
| |
2382 | 2414 |
| |
2383 | 2415 |
| |
| |||
2448 | 2480 |
| |
2449 | 2481 |
| |
2450 | 2482 |
| |
2451 |
| - | |
| 2483 | + | |
| 2484 | + | |
| 2485 | + | |
2452 | 2486 |
| |
2453 | 2487 |
| |
2454 | 2488 |
| |
|
0 commit comments
Comments
(0)