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

Diff for /mandoc/mandoc.c between version 1.82 and 1.84

version 1.82, 2014/07/06 18:37:34 version 1.84, 2014/08/10 23:54:41
Line 15 
Line 15 
  * 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"  #include "config.h"
 #endif  
   
 #include <sys/types.h>  #include <sys/types.h>
   
Line 429  mandoc_getarg(struct mparse *parse, char **cpp, int ln
Line 427  mandoc_getarg(struct mparse *parse, char **cpp, int ln
   
         /* Quoted argument without a closing quote. */          /* Quoted argument without a closing quote. */
         if (1 == quoted)          if (1 == quoted)
                 mandoc_msg(MANDOCERR_BADQUOTE, parse, ln, *pos, NULL);                  mandoc_msg(MANDOCERR_ARG_QUOTE, parse, ln, *pos, NULL);
   
         /* NUL-terminate this argument and move to the next one. */          /* NUL-terminate this argument and move to the next one. */
         if (pairs)          if (pairs)
Line 443  mandoc_getarg(struct mparse *parse, char **cpp, int ln
Line 441  mandoc_getarg(struct mparse *parse, char **cpp, int ln
         *cpp = cp;          *cpp = cp;
   
         if ('\0' == *cp && (white || ' ' == cp[-1]))          if ('\0' == *cp && (white || ' ' == cp[-1]))
                 mandoc_msg(MANDOCERR_EOLNSPACE, parse, ln, *pos, NULL);                  mandoc_msg(MANDOCERR_SPACE_EOL, parse, ln, *pos, NULL);
   
         return(start);          return(start);
 }  }

Legend:
Removed from v.1.82  
changed lines
  Added in v.1.84

CVSweb