[BACK]Return to mark.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / less

Diff for /src/usr.bin/less/mark.c between version 1.5 and 1.6

version 1.5, 2003/04/14 14:33:57 version 1.6, 2010/07/03 16:29:46
Line 129 
Line 129 
         return (m);          return (m);
 }  }
   
   #ifndef SMALL_PROGRAM
 /*  /*
  * Is a mark letter is invalid?   * Is a mark letter is invalid?
  */   */
Line 138 
Line 139 
 {  {
         return (getmark(c) == NULL);          return (getmark(c) == NULL);
 }  }
   #endif /* SMALL_PROGRAM */
   
 /*  /*
  * Set a user-defined mark.   * Set a user-defined mark.
Line 216 
Line 218 
         jump_loc(scrpos.pos, scrpos.ln);          jump_loc(scrpos.pos, scrpos.ln);
 }  }
   
   #ifndef SMALL_PROGRAM
 /*  /*
  * Return the position associated with a given mark letter.   * Return the position associated with a given mark letter.
  *   *
Line 240 
Line 243 
         }          }
         return (m->m_scrpos.pos);          return (m->m_scrpos.pos);
 }  }
   #endif /* SMALL_PROGRAM */
   
 /*  /*
  * Clear the marks associated with a specified ifile.   * Clear the marks associated with a specified ifile.

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.6