Changeset b6a7367 for functions.c


Ignore:
Timestamp:
Dec 6, 2003, 9:29:03 PM (20 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:
8c46404
Parents:
88ca489
Message:
Current directory added to 'status' command
File:
1 edited

Legend:

Unmodified
Added
Removed
  • functions.c

    rf36222f rb6a7367  
    17861786  owl_fmtext_append_normal(&fm, owl_global_get_startupargs(&g));
    17871787  owl_fmtext_append_normal(&fm, "\n");
     1788
     1789  owl_fmtext_append_normal(&fm, "  Current Directory: ");
     1790  (void) getcwd(buff, MAXPATHLEN);
     1791  owl_fmtext_append_normal(&fm, buff);
     1792  owl_fmtext_append_normal(&fm, "\n");
     1793
    17881794  sprintf(buff, "  Startup Time: %s", ctime(&start));
    17891795  owl_fmtext_append_normal(&fm, buff);
Note: See TracChangeset for help on using the changeset viewer.