From: Po Lu Date: Sun, 26 Jun 2022 10:14:17 +0000 (+0800) Subject: ; Minor cosmetics adjustment to xterm.c X-Git-Tag: emacs-29.0.90~1447^2~1457 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=05ee87d4233d0bbb64cf24af93d3d074a5d5a3eb;p=emacs.git ; Minor cosmetics adjustment to xterm.c * src/xterm.c: Rename xIOErrorHandler & friends to "Emacs_XIOErrorHandler" so they don't look like X protocol header types. --- diff --git a/src/xterm.c b/src/xterm.c index 6afb2a3312f..34fbbfb81cb 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -720,10 +720,10 @@ along with GNU Emacs. If not, see . */ #endif /* Although X11/Xlib.h commonly defines the types XErrorHandler and - XIOErrorHandler, they are not in the Xlib spec so for portability - define and use names with a leading lower-case 'x' instead. */ -typedef int (*xErrorHandler) (Display *, XErrorEvent *); -typedef int (*xIOErrorHandler) (Display *); + XIOErrorHandler, they are not in the Xlib spec, so for portability + define and use names with an Emacs_ prefix instead. */ +typedef int (*Emacs_XErrorHandler) (Display *, XErrorEvent *); +typedef int (*Emacs_XIOErrorHandler) (Display *); #if defined USE_XCB && defined USE_CAIRO_XCB #define USE_CAIRO_XCB_SURFACE @@ -1838,8 +1838,8 @@ xm_get_drag_window_1 (struct x_display_info *dpyinfo) Window drag_window; XSetWindowAttributes attrs; Display *temp_display; - xErrorHandler old_handler; - xIOErrorHandler old_io_handler; + Emacs_XErrorHandler old_handler; + Emacs_XIOErrorHandler old_io_handler; /* These are volatile because GCC mistakenly warns about them being clobbered by longjmp. */ @@ -23168,7 +23168,7 @@ x_connection_closed (Display *dpy, const char *error_message, bool ioerror) struct x_display_info *dpyinfo; Lisp_Object frame, tail; specpdl_ref idx = SPECPDL_INDEX (); - xIOErrorHandler io_error_handler; + Emacs_XIOErrorHandler io_error_handler; xm_drop_start_message dmsg; struct frame *f;