[BACK]Return to chared.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / lib / libedit

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/lib/libedit/chared.c between version 1.35 and 1.36

version 1.35, 2011/08/16 16:25:15 version 1.36, 2011/10/23 17:37:55
Line 201  c_delbefore1(EditLine *el)
Line 201  c_delbefore1(EditLine *el)
 protected int  protected int
 ce__isword(Int p)  ce__isword(Int p)
 {  {
         return Isalnum(p || Strchr(STR("*?_-.[]~="), p) != NULL);          return Isalnum(p) || Strchr(STR("*?_-.[]~="), p) != NULL;
 }  }
   
   

Legend:
Removed from v.1.35  
changed lines
  Added in v.1.36

CVSweb <webmaster@jp.NetBSD.org>