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

Diff for /src/usr.bin/mg/bell.c between version 1.4 and 1.5

version 1.4, 2016/01/03 19:37:08 version 1.5, 2019/07/17 18:18:37
Line 26 
Line 26 
         dovisiblebell = 0;          dovisiblebell = 0;
 }  }
   
   int
   dobeep_msgs(const char *msg, const char *s)
   {
           ewprintf("%s %s", msg, s);
           dobeep();
           return (FALSE);
   }
   
   int
   dobeep_msg(const char *msg)
   {
           ewprintf("%s", msg);
           dobeep();
           return (FALSE);
   }
   
 void  void
 dobeep(void)  dobeep(void)
 {  {

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