diff options
| author | Po Lu | 2022-11-01 19:20:03 +0800 |
|---|---|---|
| committer | Po Lu | 2022-11-01 19:20:15 +0800 |
| commit | e39537ea1ec54e4073b2a3da2c94022c8ca912c2 (patch) | |
| tree | 00bf0640636348b2dd828171e243a9ffccc7bb10 | |
| parent | eb68c3d5a23e519a4b9ffc7b87fa7db68a18ae0b (diff) | |
| download | emacs-e39537ea1ec54e4073b2a3da2c94022c8ca912c2.tar.gz emacs-e39537ea1ec54e4073b2a3da2c94022c8ca912c2.zip | |
* src/xterm.c (x_term_init): Fix last change.
| -rw-r--r-- | src/xterm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xterm.c b/src/xterm.c index d8358269f60..bd60a04c6cd 100644 --- a/src/xterm.c +++ b/src/xterm.c | |||
| @@ -29801,7 +29801,7 @@ x_term_init (Lisp_Object display_name, char *xrm_option, char *resource_name) | |||
| 29801 | that also destroys the font, leading to to X protocol errors at | 29801 | that also destroys the font, leading to to X protocol errors at |
| 29802 | XtCloseDisplay. Just free the font info structure. | 29802 | XtCloseDisplay. Just free the font info structure. |
| 29803 | (Bug#18403) */ | 29803 | (Bug#18403) */ |
| 29804 | XFreeFontInfo (NULL, query_result, 0); | 29804 | XFreeFontInfo (NULL, query_result, 1); |
| 29805 | x_uncatch_errors (); | 29805 | x_uncatch_errors (); |
| 29806 | } | 29806 | } |
| 29807 | #endif | 29807 | #endif |