diff options
author | max@tclers.tk (Reinhard Max) <max> | 2011-11-08 17:44:42 (GMT) |
---|---|---|
committer | max@tclers.tk (Reinhard Max) <max> | 2011-11-08 17:44:42 (GMT) |
commit | 59c3cc340836a6efe395266b047b5618e44d57cf (patch) | |
tree | f40cfd7ed7186b5f20da079a0e51a8db01d102f2 /doc/text.n | |
parent | 14f5fa830014276c68b48759fa27a384eebd2439 (diff) | |
download | tk-59c3cc340836a6efe395266b047b5618e44d57cf.zip tk-59c3cc340836a6efe395266b047b5618e44d57cf.tar.gz tk-59c3cc340836a6efe395266b047b5618e44d57cf.tar.bz2 |
* Add square to DEMOPROGS in unix/Makefile.in. It contains a shebang
and hence should get installed with executable bits.
* manpages: Fix the escaping of leading dots in lines that start
with a widget name, so that nroff doesn't mistake it as a
non-existing macro and skips the entire line.
Diffstat (limited to 'doc/text.n')
-rw-r--r-- | doc/text.n | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -2292,8 +2292,8 @@ match, the text widget will return the wrong result. In practice this is a rare problem, but it can occur, for example: .CS pack [text .t] -\.t insert 1.0 "aaaa\enbbbb\encccc\enbbbb\enaaaa\en" -\.t search \-regexp \-\- {(a+|b+\enc+\enb+)+\ena+} 1.0 +\&.t insert 1.0 "aaaa\enbbbb\encccc\enbbbb\enaaaa\en" +\&.t search \-regexp \-\- {(a+|b+\enc+\enb+)+\ena+} 1.0 .CE will not find a match when one exists of 19 characters starting from the first @@ -2310,8 +2310,8 @@ possible match which might cover large portions of the widget. For example: .CS pack [text .t] -\.t insert 1.0 "aaaa\enbbbb\enbbbb\enbbbb\enbbbb\\n" -\.t search \-regexp \-backward \-\- {b+\en|a+\en(b+\en)+} end +\&.t insert 1.0 "aaaa\enbbbb\enbbbb\enbbbb\enbbbb\\n" +\&.t search \-regexp \-backward \-\- {b+\en|a+\en(b+\en)+} end .CE matches at .QW 5.0 |