do_browser()
- Minor fixes to the processing of SELECT function (Rocco)
- Added the "Goto Directory" code (Rocco)
+ - Don't shift the size of the file is it's less than 1K. Fixed
+ files less than 1K being displayed as 0B (Rocco).
- global.c:
- Updated some of the lists for the "Goto Directory" code (Rocco)
- move.c:
strcpy(foo + longest - 2, "--");
} else if (st.st_size < (1 << 10)) /* less than 1 K */
sprintf(foo + longest - 7, "%4d B",
- (int) st.st_size >> 10);
+ (int) st.st_size);
else if (st.st_size >= (1 << 30)) /* at least 1 gig */
sprintf(foo + longest - 7, "%4d GB",
(int) st.st_size >> 30);