diff options
| author | Po Lu | 2022-01-02 11:02:49 +0800 |
|---|---|---|
| committer | Po Lu | 2022-01-02 11:02:49 +0800 |
| commit | 96212e1a270d9ba665bf33aec8a404979afb896b (patch) | |
| tree | 052138089b01ba9d89242a2505b82af2ee102ff7 | |
| parent | a6952f78f3962ac2d9a5add580a130f0abd31429 (diff) | |
| download | emacs-96212e1a270d9ba665bf33aec8a404979afb896b.tar.gz emacs-96212e1a270d9ba665bf33aec8a404979afb896b.zip | |
Fix XRegisterIMInstantiateCallback function argument configure test
* configure.ac: Use XIDProc where XIMProc was mistakenly used.
| -rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 66cc94e3ea8..3a04724a2cd 100644 --- a/configure.ac +++ b/configure.ac | |||
| @@ -3419,7 +3419,7 @@ if test "${HAVE_XIM}" != "no"; then | |||
| 3419 | XrmDatabase db; | 3419 | XrmDatabase db; |
| 3420 | char *res_name; | 3420 | char *res_name; |
| 3421 | char *res_class; | 3421 | char *res_class; |
| 3422 | XIMProc callback; | 3422 | XIDProc *callback; |
| 3423 | XPointer *client_data; | 3423 | XPointer *client_data; |
| 3424 | #ifndef __GNUC__ | 3424 | #ifndef __GNUC__ |
| 3425 | /* If we're not using GCC, it's probably not XFree86, and this is | 3425 | /* If we're not using GCC, it's probably not XFree86, and this is |