commit 9e6e1ebe58d04f948433b31f44c03fea2aec93be
parent d365ca80bf613201332ac06fe7a39866321a2814
Author: Benno Schulenberg <bensberg@justemail.net>
Date: Fri, 24 Feb 2017 11:57:05 +0100
tweaks: remove a disabled warning, and adjust a translator hint
Diffstat:
1 file changed, 3 insertions(+), 6 deletions(-)
diff --git a/src/files.c b/src/files.c
@@ -146,13 +146,9 @@ void set_modified(void)
if (!ISSET(LOCKING) || openfile->filename[0] == '\0')
return;
- 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 {
+ if (openfile->lock_filename != NULL) {
char *fullname = get_full_path(openfile->filename);
+
write_lockfile(openfile->lock_filename, fullname, TRUE);
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. */
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 "
"(getpwuid() failed)"));
goto free_the_data;