tweaks: remove a disabled warning, and adjust a translator hint
parent
d365ca80bf
commit
9e6e1ebe58
|
@ -146,13 +146,9 @@ void set_modified(void)
|
||||||
if (!ISSET(LOCKING) || openfile->filename[0] == '\0')
|
if (!ISSET(LOCKING) || openfile->filename[0] == '\0')
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (openfile->lock_filename == NULL) {
|
if (openfile->lock_filename != NULL) {
|
||||||
/* TRANSLATORS: Keep the next ten messages at most 76 characters. */
|
|
||||||
// statusline(ALERT, _("Warning: Modifying a file which is not locked,"
|
|
||||||
// " check directory permission?"));
|
|
||||||
;
|
|
||||||
} else {
|
|
||||||
char *fullname = get_full_path(openfile->filename);
|
char *fullname = get_full_path(openfile->filename);
|
||||||
|
|
||||||
write_lockfile(openfile->lock_filename, fullname, TRUE);
|
write_lockfile(openfile->lock_filename, fullname, TRUE);
|
||||||
free(fullname);
|
free(fullname);
|
||||||
}
|
}
|
||||||
|
@ -188,6 +184,7 @@ int write_lockfile(const char *lockfilename, const char *origfilename, bool modi
|
||||||
|
|
||||||
/* First run things that might fail before blowing away the old state. */
|
/* First run things that might fail before blowing away the old state. */
|
||||||
if ((mypwuid = getpwuid(myuid)) == NULL) {
|
if ((mypwuid = getpwuid(myuid)) == NULL) {
|
||||||
|
/* TRANSLATORS: Keep the next eight messages at most 76 characters. */
|
||||||
statusline(MILD, _("Couldn't determine my identity for lock file "
|
statusline(MILD, _("Couldn't determine my identity for lock file "
|
||||||
"(getpwuid() failed)"));
|
"(getpwuid() failed)"));
|
||||||
goto free_the_data;
|
goto free_the_data;
|
||||||
|
|
Loading…
Reference in New Issue