]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix bug with ~/Emacs file not being read at init
authorRobert Pluim <rpluim@gmail.com>
Mon, 17 Aug 2020 04:40:19 +0000 (21:40 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 17 Aug 2020 04:41:03 +0000 (21:41 -0700)
* src/xrdb.c (get_user_app): Put "/" between homedir
and %L or %N (Bug#42827).

src/xrdb.c

index ad7155c106e50bfdf1f1dd91c75c1e50c47e8f84..d3ac117552103421728ae150793f761bc6f42476 100644 (file)
@@ -289,9 +289,9 @@ get_user_app (const char *class)
       /* Check in the home directory.  This is a bit of a hack; let's
         hope one's home directory doesn't contain ':' or '%'.  */
       char const *home = get_homedir ();
-      db = search_magic_path (home, class, "%L/%N");
+      db = search_magic_path (home, class, "/%L/%N");
       if (! db)
-       db = search_magic_path (home, class, "%N");
+       db = search_magic_path (home, class, "/%N");
     }
 
   return db;