[BACK]Return to complete.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / usr.bin / mail

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

Diff for /src/usr.bin/mail/complete.c between version 1.6 and 1.7

version 1.6, 2006/09/27 15:21:26 version 1.7, 2006/09/27 15:23:34
Line 1033  init_readline(void)
Line 1033  init_readline(void)
         const char *el_history_size;          const char *el_history_size;
         char *el_completion_keys;          char *el_completion_keys;
   
         rl_global.hist = history_init();                        /* init the builtin history */          rl_global.hist = history_init();        /* init the builtin history */
         el_history_size = value("el_history_size") ? : "0";          el_history_size = value("el_history_size");
           if (el_history_size == NULL)
                   el_history_size = "0";
         if (history(rl_global.hist, &ev, H_SETSIZE, atoi(el_history_size)))          if (history(rl_global.hist, &ev, H_SETSIZE, atoi(el_history_size)))
                 printf("history: %s\n", ev.str);                  printf("history: %s\n", ev.str);
   

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

CVSweb <webmaster@jp.NetBSD.org>