summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChong Yidong <cyd@stupidchicken.com>2006-02-27 03:35:31 +0000
committerChong Yidong <cyd@stupidchicken.com>2006-02-27 03:35:31 +0000
commit4545fa2085b65a310e46b6d599d3998e0a1fe370 (patch)
tree51285cbdbd8cec969e859b17827f6d21572d0357 /src
parentc50a2aa68292912f11d951bf20b24d79533e0537 (diff)
downloademacs-4545fa2085b65a310e46b6d599d3998e0a1fe370.tar.gz
* xterm.h, xterm.c (x_uncatch_errors): Delete unneccessary
argument. * xterm.c: (x_load_font, x_term_init, XTmouse_position) (handle_one_xevent, x_connection_closed, x_list_fonts): No arg for x_uncatch_errors. * xselect.c (x_own_selection, x_decline_selection_request) (x_reply_selection_request, x_get_foreign_selection) (Fx_get_atom_name, Fx_send_client_event): Likewise. * xfns.c (x_real_positions, x_set_mouse_color, Fx_focus_frame): Likewise.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog18
-rw-r--r--src/xfns.c6
-rw-r--r--src/xselect.c12
-rw-r--r--src/xterm.c27
-rw-r--r--src/xterm.h4
5 files changed, 40 insertions, 27 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index f8b34eb6192..79db6d09d0b 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,19 @@
+2006-02-26 Chong Yidong <cyd@stupidchicken.com>
+
+ * xterm.h, xterm.c (x_uncatch_errors): Delete unneccessary
+ argument.
+
+ * xterm.c: (x_load_font, x_term_init, XTmouse_position)
+ (handle_one_xevent, x_connection_closed, x_list_fonts): No arg for
+ x_uncatch_errors.
+
+ * xselect.c (x_own_selection, x_decline_selection_request)
+ (x_reply_selection_request, x_get_foreign_selection)
+ (Fx_get_atom_name, Fx_send_client_event): Likewise.
+
+ * xfns.c (x_real_positions, x_set_mouse_color, Fx_focus_frame):
+ Likewise.
+
2006-02-26 Luc Teirlinck <teirllm@auburn.edu>
* lread.c: Declare Vload_file_rep_suffixes instead of
@@ -28,7 +44,7 @@
2006-02-25 Chong Yidong <cyd@stupidchicken.com>
* xterm.h (x_catch_errors) Return value changed to void.
- (x_uncatch_errors): Delete unused count argument delete.
+ (x_uncatch_errors): Delete unused count argument.
* xterm.c (x_catch_errors): Don't use record_unwind_protect, since
it can be called in a signal handler.
diff --git a/src/xfns.c b/src/xfns.c
index a65cf31a360..ede53262f5f 100644
--- a/src/xfns.c
+++ b/src/xfns.c
@@ -666,7 +666,7 @@ x_real_positions (f, xptr, yptr)
had_errors = x_had_errors_p (FRAME_X_DISPLAY (f));
}
- x_uncatch_errors (FRAME_X_DISPLAY (f));
+ x_uncatch_errors ();
UNBLOCK_INPUT;
@@ -1021,7 +1021,7 @@ x_set_mouse_color (f, arg, oldval)
/* Check and report errors with the above calls. */
x_check_errors (dpy, "can't set cursor shape: %s");
- x_uncatch_errors (dpy);
+ x_uncatch_errors ();
{
XColor fore_color, back_color;
@@ -3443,7 +3443,7 @@ FRAME nil means use the selected frame. */)
x_catch_errors (dpy);
XSetInputFocus (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
RevertToParent, CurrentTime);
- x_uncatch_errors (dpy);
+ x_uncatch_errors ();
UNBLOCK_INPUT;
return Qnil;
diff --git a/src/xselect.c b/src/xselect.c
index 6efa625543e..a0b4b091805 100644
--- a/src/xselect.c
+++ b/src/xselect.c
@@ -410,7 +410,7 @@ x_own_selection (selection_name, selection_value)
x_catch_errors (display);
XSetSelectionOwner (display, selection_atom, selecting_window, time);
x_check_errors (display, "Can't set selection: %s");
- x_uncatch_errors (display);
+ x_uncatch_errors ();
UNBLOCK_INPUT;
/* Now update the local cache */
@@ -586,7 +586,7 @@ x_decline_selection_request (event)
x_catch_errors (reply.display);
XSendEvent (reply.display, reply.requestor, False, 0L, (XEvent *) &reply);
XFlush (reply.display);
- x_uncatch_errors (reply.display);
+ x_uncatch_errors ();
UNBLOCK_INPUT;
}
@@ -860,7 +860,7 @@ x_reply_selection_request (event, format, data, size, type)
BLOCK_INPUT;
unbind_to (count, Qnil);
- x_uncatch_errors (display);
+ x_uncatch_errors ();
UNBLOCK_INPUT;
}
@@ -1434,7 +1434,7 @@ x_get_foreign_selection (selection_symbol, target_type, time_stamp)
BLOCK_INPUT;
unbind_to (count, Qnil);
x_check_errors (display, "Cannot get selection: %s");
- x_uncatch_errors (display);
+ x_uncatch_errors ();
UNBLOCK_INPUT;
if (NILP (XCAR (reading_selection_reply)))
@@ -2673,7 +2673,7 @@ If the value is 0 or the atom is not known, return the empty string. */)
if (! x_had_errors_p (dpy))
ret = make_string (name, strlen (name));
- x_uncatch_errors (dpy);
+ x_uncatch_errors ();
if (atom && name) XFree (name);
if (NILP (ret)) ret = make_string ("", 0);
@@ -2849,7 +2849,7 @@ are ignored. */)
XSendEvent (dpyinfo->display, wdest, propagate, mask, &event);
XFlush (dpyinfo->display);
}
- x_uncatch_errors (dpyinfo->display);
+ x_uncatch_errors ();
UNBLOCK_INPUT;
return Qnil;
diff --git a/src/xterm.c b/src/xterm.c
index b7c1ba14caf..7b952e1f45f 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -325,7 +325,7 @@ void x_delete_display P_ ((struct x_display_info *));
static int x_io_error_quitter P_ ((Display *));
void x_catch_errors P_ ((Display *));
-void x_uncatch_errors P_ ((Display *));
+void x_uncatch_errors P_ ((void));
void x_lower_frame P_ ((struct frame *));
void x_scroll_bar_clear P_ ((struct frame *));
int x_had_errors_p P_ ((Display *));
@@ -3795,7 +3795,7 @@ XTmouse_position (fp, insist, bar_window, part, x, y, time)
if (x_had_errors_p (FRAME_X_DISPLAY (*fp)))
f1 = 0;
- x_uncatch_errors (FRAME_X_DISPLAY (*fp));
+ x_uncatch_errors ();
/* If not, is it one of our scroll bars? */
if (! f1)
@@ -5721,7 +5721,7 @@ handle_one_xevent (dpyinfo, eventp, finish, hold_quit)
/* This is needed to detect the error
if there is an error. */
XSync (d, False);
- x_uncatch_errors (d);
+ x_uncatch_errors ();
}
/* Not certain about handling scroll bars here */
#endif /* 0 */
@@ -7529,19 +7529,16 @@ x_catch_errors (dpy)
DPY should be the display that was passed to x_catch_errors. */
void
-x_uncatch_errors (dpy)
- Display *dpy;
+x_uncatch_errors ()
{
struct x_error_message_stack *tmp;
- eassert (x_error_message && dpy == x_error_message->dpy);
-
/* The display may have been closed before this function is called.
Check if it is still open before calling XSync. */
- if (x_display_info_for_display (dpy) != 0)
+ if (x_display_info_for_display (x_error_message->dpy) != 0)
{
BLOCK_INPUT;
- XSync (dpy, False);
+ XSync (x_error_message->dpy, False);
UNBLOCK_INPUT;
}
@@ -7566,7 +7563,7 @@ x_check_errors (dpy, format)
{
char string[X_ERROR_MESSAGE_SIZE];
bcopy (x_error_message->string, string, X_ERROR_MESSAGE_SIZE);
- x_uncatch_errors (dpy);
+ x_uncatch_errors ();
error (format, string);
}
}
@@ -7726,7 +7723,7 @@ x_connection_closed (dpy, error_message)
if (dpyinfo)
x_delete_display (dpyinfo);
- x_uncatch_errors (dpy);
+ x_uncatch_errors ();
if (x_display_list == 0)
{
@@ -9452,7 +9449,7 @@ x_list_fonts (f, pattern, size, maxnames)
}
}
- x_uncatch_errors (dpy);
+ x_uncatch_errors ();
UNBLOCK_INPUT;
if (names)
@@ -9553,7 +9550,7 @@ x_list_fonts (f, pattern, size, maxnames)
thisinfo = NULL;
x_clear_errors (dpy);
}
- x_uncatch_errors (dpy);
+ x_uncatch_errors ();
UNBLOCK_INPUT;
if (thisinfo)
@@ -9756,7 +9753,7 @@ x_load_font (f, fontname, size)
font = NULL;
x_clear_errors (FRAME_X_DISPLAY (f));
}
- x_uncatch_errors (FRAME_X_DISPLAY (f));
+ x_uncatch_errors ();
UNBLOCK_INPUT;
if (!font)
return NULL;
@@ -10541,7 +10538,7 @@ x_term_init (display_name, xrm_option, resource_name)
abort ();
if (x_had_errors_p (dpy) || !XQueryFont (dpy, font))
XrmPutLineResource (&xrdb, "Emacs.dialog.*.font: 9x15");
- x_uncatch_errors (dpy);
+ x_uncatch_errors ();
}
#endif
#endif
diff --git a/src/xterm.h b/src/xterm.h
index b2fa92fa4e4..a84a42d85d3 100644
--- a/src/xterm.h
+++ b/src/xterm.h
@@ -960,7 +960,7 @@ void x_iconify_frame P_ ((struct frame *));
void x_wm_set_size_hint P_ ((struct frame *, long, int));
void x_catch_errors P_ ((Display *));
int x_had_errors_p P_ ((Display *));
-void x_uncatch_errors P_ ((Display *));
+void x_uncatch_errors P_ ((void));
void x_check_errors P_ ((Display *, char *));
int x_text_icon P_ ((struct frame *, char *));
int x_bitmap_icon P_ ((struct frame *, Lisp_Object));
@@ -977,7 +977,7 @@ extern int x_bitmap_icon P_ ((struct frame *, Lisp_Object));
extern void x_catch_errors P_ ((Display *));
extern void x_check_errors P_ ((Display *, char *));
extern int x_had_errors_p P_ ((Display *));
-extern void x_uncatch_errors P_ ((Display *));
+extern void x_uncatch_errors P_ ((void));
extern void x_set_window_size P_ ((struct frame *, int, int, int));
extern void x_set_mouse_position P_ ((struct frame *, int, int));
extern void x_set_mouse_pixel_position P_ ((struct frame *, int, int));