From d624284cc873f9908c11cf1b64aaa068567a8be0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Pavel=20Jan=C3=ADk?= Date: Sun, 14 Oct 2001 16:10:40 +0000 Subject: [PATCH] (xlwmenu_window_p, xlwmenu_redisplay): Add prototypes. (XTread_socket): Improve style of comments to follow other comments. --- src/ChangeLog | 4 ++++ src/xterm.c | 13 +++++++++---- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/src/ChangeLog b/src/ChangeLog index 998d817f499..9b24404c16f 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,9 @@ 2001-10-14 Pavel Jan,Bm(Bk + * xterm.c: (xlwmenu_window_p, xlwmenu_redisplay): Add prototypes. + (XTread_socket): Improve style of comments to follow other + comments. + * keyboard.c (Fcommand_execute): Remove unnecessary prototype (it is already prototyped in included lisp.h). diff --git a/src/xterm.c b/src/xterm.c index 2dd0cd01b89..c6b6f477359 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -98,6 +98,11 @@ Boston, MA 02111-1307, USA. */ #include #endif +#ifdef USE_LUCID +extern int xlwmenu_window_p (Widget w, Window window); +extern void xlwmenu_redisplay P_ ((Widget)); +#endif + #ifdef USE_X_TOOLKIT extern void free_frame_menubar P_ ((struct frame *)); @@ -10315,8 +10320,8 @@ XTread_socket (sd, bufp, numchars, expected) break; case GraphicsExpose: /* This occurs when an XCopyArea's - source area was obscured or not - available.*/ + source area was obscured or not + available. */ f = x_window_to_frame (dpyinfo, event.xgraphicsexpose.drawable); if (f) { @@ -10333,7 +10338,7 @@ XTread_socket (sd, bufp, numchars, expected) case NoExpose: /* This occurs when an XCopyArea's source area was completely - available */ + available. */ break; case UnmapNotify: @@ -10346,7 +10351,7 @@ XTread_socket (sd, bufp, numchars, expected) f = x_top_window_to_frame (dpyinfo, event.xunmap.window); if (f) /* F may no longer exist if - the frame was deleted. */ + the frame was deleted. */ { /* While a frame is unmapped, display generation is disabled; you don't want to spend time updating a -- 2.39.2