]> git.eshelyaron.com Git - emacs.git/commitdiff
(unlock_file, lock_file): Call Fexpand_file_name.
authorKarl Heuer <kwzh@gnu.org>
Wed, 7 Jun 1995 20:39:56 +0000 (20:39 +0000)
committerKarl Heuer <kwzh@gnu.org>
Wed, 7 Jun 1995 20:39:56 +0000 (20:39 +0000)
src/filelock.c

index 4c725253acd81dfc53b8ac3b49a8127fa3a0997f..98d197afd546911f4339f638aa0f0336b364d6e9 100644 (file)
@@ -202,6 +202,8 @@ lock_file (fn)
   register Lisp_Object attack;
   register char *lfname;
 
+  fn = Fexpand_file_name (fn, Qnil);
+
   MAKE_LOCK_NAME (lfname, fn);
 
   /* See if this file is visited and has changed on disk since it was
@@ -329,6 +331,8 @@ unlock_file (fn)
 {
   register char *lfname;
 
+  fn = Fexpand_file_name (fn, Qnil);
+
   MAKE_LOCK_NAME (lfname, fn);
 
   lock_superlock (lfname);