X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Ftitle.c;h=7edd2dade7339f7cb881f3e3770bbc0bf9b3bd93;hb=92fb12eb06716d14c05b781f5d9dcde956d77c30;hp=68a38e47f084f3e9d96e27bb8f0b0a8f943d0153;hpb=b321086267ad1014dc5d09886396cde30f094437;p=pspp diff --git a/src/title.c b/src/title.c index 68a38e47f0..7edd2dade7 100644 --- a/src/title.c +++ b/src/title.c @@ -14,8 +14,8 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA - 02111-1307, USA. */ + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA + 02110-1301, USA. */ #include #include @@ -24,6 +24,7 @@ #include "command.h" #include "dictionary.h" #include "error.h" +#include "glob.h" #include "lexer.h" #include "main.h" #include "output.h" @@ -31,6 +32,9 @@ #include "version.h" #include "vfm.h" +#include "gettext.h" +#define _(msgid) gettext (msgid) + #include "debug-print.h" static int get_title (const char *cmd, char **title); @@ -117,7 +121,7 @@ add_document_line (const char *line, int indent) memcpy (new_documents, old_documents, old_len); memset (new_documents + old_len, ' ', indent); - st_bare_pad_copy (new_documents + old_len + indent, line, 80 - indent); + buf_copy_str_rpad (new_documents + old_len + indent, 80 - indent, line); new_documents[old_len + 80] = '\0'; dict_set_documents (default_dict, new_documents); @@ -132,14 +136,11 @@ cmd_document (void) /* Add a few header lines for reference. */ { char buf[256]; - struct tm *tmp = localtime (&last_vfm_invocation); if (dict_get_documents (default_dict) != NULL) add_document_line ("", 0); - sprintf (buf, _("Document entered %s %02d:%02d:%02d by %s (%s):"), - curdate, tmp->tm_hour, tmp->tm_min, tmp->tm_sec, version, - host_system); + sprintf (buf, _("Document entered %s by %s:"), get_start_date (), version); add_document_line (buf, 1); }