diff options
| author | Vibhav Pant | 2020-08-21 14:04:35 +0530 |
|---|---|---|
| committer | Vibhav Pant | 2020-08-21 14:04:35 +0530 |
| commit | f0f8d7b82492e741950c363a03b886965c91b1b0 (patch) | |
| tree | 19b716830b1ebabc0d7d75949c4e6800c0f104ad /src/xrdb.c | |
| parent | 9e64a087c4d167e7ec1c4e22bea3e6af53b563de (diff) | |
| parent | c818c29771d3cb51875643b2f6c894073e429dd2 (diff) | |
| download | emacs-feature/native-comp-macos-fixes.tar.gz emacs-feature/native-comp-macos-fixes.zip | |
Merge branch 'feature/native-comp' into feature/native-comp-macos-fixesfeature/native-comp-macos-fixes
Diffstat (limited to 'src/xrdb.c')
| -rw-r--r-- | src/xrdb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xrdb.c b/src/xrdb.c index e3a1fcb15a9..3d7f715c88f 100644 --- a/src/xrdb.c +++ b/src/xrdb.c | |||
| @@ -289,9 +289,9 @@ get_user_app (const char *class) | |||
| 289 | /* Check in the home directory. This is a bit of a hack; let's | 289 | /* Check in the home directory. This is a bit of a hack; let's |
| 290 | hope one's home directory doesn't contain ':' or '%'. */ | 290 | hope one's home directory doesn't contain ':' or '%'. */ |
| 291 | char const *home = get_homedir (); | 291 | char const *home = get_homedir (); |
| 292 | db = search_magic_path (home, class, "%L/%N"); | 292 | db = search_magic_path (home, class, "/%L/%N"); |
| 293 | if (! db) | 293 | if (! db) |
| 294 | db = search_magic_path (home, class, "%N"); | 294 | db = search_magic_path (home, class, "/%N"); |
| 295 | } | 295 | } |
| 296 | 296 | ||
| 297 | return db; | 297 | return db; |