diff options
author | Jim Meyering <jim@meyering.net> | 2001-11-23 18:45:32 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2001-11-23 18:45:32 +0000 |
commit | 6f468fedb43dff9e6966ec73d3bb61a28d227484 (patch) | |
tree | 9f7a8e7d8dcdf0b1fab958d0b4adb58e3a8f590d /src | |
parent | a5f1ced62a3a3288f72d4f494e61122e7d407498 (diff) | |
download | coreutils-6f468fedb43dff9e6966ec73d3bb61a28d227484.tar.xz |
(main): Don't split string in the middle of sentence.
Diffstat (limited to 'src')
-rw-r--r-- | src/ptx.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1975,13 +1975,15 @@ it under the terms of the GNU General Public License as published by\n\ the Free Software Foundation; either version 2, or (at your option)\n\ any later version.\n\ \n\ -This program is distributed in the hope that it will be useful,\n\ "), stdout); fputs (_("\ +This program is distributed in the hope that it will be useful,\n\ but WITHOUT ANY WARRANTY; without even the implied warranty of\n\ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n\ GNU General Public License for more details.\n\ \n\ +"), stdout); + fputs (_("\ You should have received a copy of the GNU General Public License\n\ along with this program; if not, write to the Free Software Foundation,\n\ Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"), |