diff options
| author | Richard M. Stallman | 1993-05-25 15:36:47 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-05-25 15:36:47 +0000 |
| commit | 6c703f4ab94369d580102414025273e16197bc52 (patch) | |
| tree | 7769307a3b71c9fd1d85e8b1c2ca8a60c9e0244d /src | |
| parent | 00c29909845f461ffc6307be3bddd36621b6d674 (diff) | |
| download | emacs-6c703f4ab94369d580102414025273e16197bc52.tar.gz emacs-6c703f4ab94369d580102414025273e16197bc52.zip | |
(Fx_open_connection): Set xrm_option correctly.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xfns.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xfns.c b/src/xfns.c index a4fb4f2b8e4..93707bca6a9 100644 --- a/src/xfns.c +++ b/src/xfns.c | |||
| @@ -3476,7 +3476,7 @@ arg XRM_STRING is a string of resources in xrdb format.") | |||
| 3476 | if (!EQ (xrm_string, Qnil)) | 3476 | if (!EQ (xrm_string, Qnil)) |
| 3477 | { | 3477 | { |
| 3478 | CHECK_STRING (xrm_string, 1); | 3478 | CHECK_STRING (xrm_string, 1); |
| 3479 | xrm_option = (unsigned char *) XSTRING (xrm_string); | 3479 | xrm_option = (unsigned char *) XSTRING (xrm_string)->data; |
| 3480 | } | 3480 | } |
| 3481 | else | 3481 | else |
| 3482 | xrm_option = (unsigned char *) 0; | 3482 | xrm_option = (unsigned char *) 0; |