Changeset c7041b3


Ignore:
Timestamp:
Oct 28, 2003, 10:42:36 PM (21 years ago)
Author:
James M. Kretchmar <kretch@mit.edu>
Branches:
master, barnowl_perlaim, debian, owl, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
Children:
1db061d
Parents:
cee1f25
Message:
Added timestamp to login/logout messages
Turned history duplicates off, it's not exactly what we want
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • ChangeLog

    rcee1f25 rc7041b3  
    11$Id$
     2
    232.0.12-pre-2
    34        Fixed double quoting in smartzpunt
     5        Added timestamp to login/logout messages
     6        Turned history duplicates off, it's not exactly what we want
    47       
    582.0.12-pre-1
  • global.c

    r12c35df rc7041b3  
    7575  owl_history_init(&(g->msghist));
    7676  owl_history_init(&(g->cmdhist));
    77   owl_history_set_norepeats(&(g->cmdhist));
     77  /* owl_history_set_norepeats(&(g->cmdhist)); */
    7878  g->nextmsgid=0;
    7979
  • stylefunc.c

    re3d9c77 rc7041b3  
    292292      owl_fmtext_append_normal(fm, " ");
    293293      owl_fmtext_append_normal(fm, tty);
     294      owl_fmtext_append_normal(fm, " ");
     295      owl_fmtext_append_normal(fm, shorttimestr);
    294296      owl_fmtext_append_normal(fm, "\n");
    295297
     
    382384      owl_fmtext_append_normal(fm, " for ");
    383385      owl_fmtext_append_normal(fm, owl_message_get_sender(m));
     386      owl_fmtext_append_normal(fm, " ");
     387      owl_fmtext_append_normal(fm, shorttimestr);
    384388      owl_fmtext_append_normal(fm, "\n");
    385389    } else if (owl_message_is_direction_in(m)) {
Note: See TracChangeset for help on using the changeset viewer.