diff options
author | Eli Zaretskii <eliz@gnu.org> | 2019-05-28 19:58:27 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2019-05-28 19:58:27 +0300 |
commit | 833097cbc4856001ae77b33365faf09c1b3c30e3 (patch) | |
tree | 6a14dc9d2859cee2dbdd4f54479353081007aaa6 /src/w32reg.c | |
parent | 4b117065e9dcdd1542f90e5560e1ace6767faacb (diff) | |
download | emacs-833097cbc4856001ae77b33365faf09c1b3c30e3.tar.gz emacs-833097cbc4856001ae77b33365faf09c1b3c30e3.tar.bz2 emacs-833097cbc4856001ae77b33365faf09c1b3c30e3.zip |
Fix handling of -xrm on MS-Windows broken by recent commits
* src/w32reg.c (w32_get_string_resource): The argument V_RDB
is a 'char **', not a 'char *'. This fixes -xrm handling on
MS-Windows, broken by conversion of x_get_string_resource to
terminal-specific hook.
Diffstat (limited to 'src/w32reg.c')
-rw-r--r-- | src/w32reg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/w32reg.c b/src/w32reg.c index 844e5613770..99b3973d708 100644 --- a/src/w32reg.c +++ b/src/w32reg.c @@ -143,7 +143,7 @@ w32_get_string_resource_1 (const char *name, const char *class, DWORD dwexptype) const char * w32_get_string_resource (void *v_rdb, const char *name, const char *class) { - const char *rdb = v_rdb; + const char *rdb = *(char **) v_rdb; if (rdb) { |