set_last_cursor(curwin);
#endif
- fprintf(fp, _("\n# Buffer list:\n"));
+ fputs(_("\n# Buffer list:\n"), fp);
for (buf = firstbuf; buf != NULL ; buf = buf->b_next)
{
if (buf->b_fname == NULL
/* Write the info: */
fprintf(fp_out, _("# This viminfo file was generated by Vim %s.\n"),
VIM_VERSION_MEDIUM);
- fprintf(fp_out, _("# You may edit it if you're careful!\n\n"));
+ fputs(_("# You may edit it if you're careful!\n\n"), fp_out);
#ifdef FEAT_MBYTE
- fprintf(fp_out, _("# Value of 'encoding' when this file was written\n"));
+ fputs(_("# Value of 'encoding' when this file was written\n"), fp_out);
fprintf(fp_out, "*encoding=%s\n\n", p_enc);
#endif
write_viminfo_search_pattern(fp_out);
{
if (get_viminfo_parameter('/') != 0 && old_sub != NULL)
{
- fprintf(fp, _("\n# Last Substitute String:\n$"));
+ fputs(_("\n# Last Substitute String:\n$"), fp);
viminfo_writestring(fp, old_sub);
}
}
if (get_viminfo_parameter('f') == 0)
return;
- fprintf(fp, _("\n# File marks:\n"));
+ fputs(_("\n# File marks:\n"), fp);
/*
* Find a mark that is the same file and position as the cursor.
#ifdef FEAT_JUMPLIST
/* Write the jumplist with -' */
- fprintf(fp, _("\n# Jumplist (newest first):\n"));
+ fputs(_("\n# Jumplist (newest first):\n"), fp);
setpcmark(); /* add current cursor position */
cleanup_jumplist();
for (fm = &curwin->w_jumplist[curwin->w_jumplistlen - 1];
set_last_cursor(curwin);
#endif
- fprintf(fp_out, _("\n# History of marks within files (newest to oldest):\n"));
+ fputs(_("\n# History of marks within files (newest to oldest):\n"), fp_out);
count = 0;
for (buf = firstbuf; buf != NULL; buf = buf->b_next)
{
{
printf("\r\n");
if (mem_frees[i] > mem_allocs[i])
- printf(_("ERROR: "));
+ puts(_("ERROR: "));
printf("[>%d / %4lu-%-4lu]", i, mem_allocs[i], mem_frees[i]);
}
{
char_u *p;
- p = (lalloc((long_u)size, TRUE));
+ p = lalloc((long_u)size, TRUE);
if (p != NULL)
(void)vim_memset(p, 0, (size_t)size);
return p;
/*
* Prepare for initializing encryption. If already doing encryption then save
* the state.
- * Must always be called symmetrycally with crypt_pop_state().
+ * Must always be called symmetrically with crypt_pop_state().
*/
void
crypt_push_state()
/*
* End encryption. If doing encryption before crypt_push_state() then restore
* the saved state.
- * Must always be called symmetrycally with crypt_push_state().
+ * Must always be called symmetrically with crypt_push_state().
*/
void
crypt_pop_state()