groff-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Groff-commit] groff ChangeLog doc/groff.texinfo src/devices/g...


From: Werner LEMBERG
Subject: [Groff-commit] groff ChangeLog doc/groff.texinfo src/devices/g...
Date: Thu, 29 Nov 2007 18:43:22 +0000

CVSROOT:        /cvsroot/groff
Module name:    groff
Changes by:     Werner LEMBERG <wl>     07/11/29 18:43:22

Modified files:
        .              : ChangeLog 
        doc            : groff.texinfo 
        src/devices/grotty: tty.cpp 

Log message:
        * src/devices/grotty/tty.cpp (tty_printer::line): Fix line lengths.
        
        typo.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/groff/ChangeLog?cvsroot=groff&r1=1.1113&r2=1.1114
http://cvs.savannah.gnu.org/viewcvs/groff/doc/groff.texinfo?cvsroot=groff&r1=1.259&r2=1.260
http://cvs.savannah.gnu.org/viewcvs/groff/src/devices/grotty/tty.cpp?cvsroot=groff&r1=1.18&r2=1.19

Patches:
Index: ChangeLog
===================================================================
RCS file: /cvsroot/groff/groff/ChangeLog,v
retrieving revision 1.1113
retrieving revision 1.1114
diff -u -b -r1.1113 -r1.1114
--- ChangeLog   20 Nov 2007 17:25:39 -0000      1.1113
+++ ChangeLog   29 Nov 2007 18:43:21 -0000      1.1114
@@ -1,3 +1,7 @@
+2007-11-29  Werner LEMBERG  <address@hidden>
+
+       * src/devices/grotty/tty.cpp (tty_printer::line): Fix line lengths.
+
 2007-11-20  Werner LEMBERG  <address@hidden>
 
        * doc/pic.ms: Add Heinz-Jürgen's 3d boxes example.

Index: doc/groff.texinfo
===================================================================
RCS file: /cvsroot/groff/groff/doc/groff.texinfo,v
retrieving revision 1.259
retrieving revision 1.260
diff -u -b -r1.259 -r1.260
--- doc/groff.texinfo   19 Sep 2007 14:55:55 -0000      1.259
+++ doc/groff.texinfo   29 Nov 2007 18:43:21 -0000      1.260
@@ -7187,7 +7187,7 @@
 .  sp |\\$1-\\n[.v]u
 ..
 .
-.de y-from_bot-up
+.de y-from-bot-up
 .  sp |\\n[.p]u-\\$1-\\n[.v]u
 ..
 @endExample

Index: src/devices/grotty/tty.cpp
===================================================================
RCS file: /cvsroot/groff/groff/src/devices/grotty/tty.cpp,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -b -r1.18 -r1.19
--- src/devices/grotty/tty.cpp  29 Jun 2006 08:51:23 -0000      1.18
+++ src/devices/grotty/tty.cpp  29 Nov 2007 18:43:22 -0000      1.19
@@ -556,7 +556,7 @@
       v += len;
       len = -len;
     }
-    if (len >= 0 && len <= font::vert)
+    if (len == 0)
       add_char(vline_char, font::hor, hpos, v, col, fill,
               VDRAW_MODE|START_LINE|END_LINE);
     else {
@@ -582,7 +582,7 @@
       h += len;
       len = -len;
     }
-    if (len >= 0 && len <= font::hor)
+    if (len == 0)
       add_char(hline_char, font::hor, h, vpos, col, fill,
               HDRAW_MODE|START_LINE|END_LINE);
     else {




reply via email to

[Prev in Thread] Current Thread [Next in Thread]