[BACK]Return to term.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/term.c between version 1.126 and 1.128

version 1.126, 2009/11/12 05:58:30 version 1.128, 2010/01/01 17:14:30
Line 14 
Line 14 
  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF   * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.   * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */   */
   #ifdef HAVE_CONFIG_H
   #include "config.h"
   #endif
   
 #include <sys/types.h>  #include <sys/types.h>
   
 #include <assert.h>  #include <assert.h>
Line 487  term_word(struct termp *p, const char *word)
Line 491  term_word(struct termp *p, const char *word)
                 default:                  default:
                         break;                          break;
                 }                  }
   
                 word += sz;                  word += sz;
                   if (DECO_NOSPACE == deco && '\0' == *word)
                           p->flags |= TERMP_NOSPACE;
         }          }
   
         if (sv[0] && 0 == sv[1])          if (sv[0] && 0 == sv[1])

Legend:
Removed from v.1.126  
changed lines
  Added in v.1.128

CVSweb