USE_LUCID can be defined iff USE_X_TOOLKIT is defined.
authorPavel Janík <Pavel@Janik.cz>
Mon, 8 Oct 2001 06:37:59 +0000 (06:37 +0000)
committerPavel Janík <Pavel@Janik.cz>
Mon, 8 Oct 2001 06:37:59 +0000 (06:37 +0000)
(xm_scroll_callback) [USE_MOTIF]: Remove unused variable `percent'.
(x_set_toolkit_scroll_bar_thumb) [USE_MOTIF]: Remove unused variable `sb'.

src/ChangeLog
src/emacs.c
src/xterm.c

index b9cfcab..493a7f6 100644 (file)
@@ -1,5 +1,15 @@
 2001-10-08  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
 
+       * lisp.h (init_window): Add prototype.
+
+       * editfns.c: Include ctype.h.
+
+       * xterm.c: USE_LUCID can be defined iff USE_X_TOOLKIT is defined.
+       (xm_scroll_callback) [USE_MOTIF]: Remove unused variable
+       `percent'.
+       (x_set_toolkit_scroll_bar_thumb) [USE_MOTIF]: Remove unused
+       variable `sb'.
+
        * xfns.c (Fx_hide_tip): Fix typo in a doc string.
        (Fx_file_dialog) [USE_MOTIF]: Remove unused variables
        `popup_activated_flag' and `title'.
index 7ac6c31..ab9521c 100644 (file)
@@ -1159,7 +1159,7 @@ main (argc, argv, envp)
   init_eval ();
   init_data ();
 #ifdef CLASH_DETECTION
-  init_filelock ();;
+  init_filelock ();
 #endif
   init_atimer ();
   running_asynch_code = 0;
index b48b518..702a1fd 100644 (file)
@@ -8252,7 +8252,7 @@ x_window_to_scroll_bar (window_id)
 }
 
 
-#if defined USE_X_TOOLKIT && defined USE_LUCID
+#if defined USE_LUCID
 
 /* Return the Lucid menu bar WINDOW is part of.  Return null
    if WINDOW is not part of a menu bar.  */
@@ -8277,7 +8277,7 @@ x_window_to_menu_bar (window)
   return NULL;
 }
 
-#endif /* USE_X_TOOLKIT && USE_LUCID */
+#endif /* USE_LUCID */
 
 \f
 /************************************************************************
@@ -8484,7 +8484,6 @@ xm_scroll_callback (widget, client_data, call_data)
 {
   struct scroll_bar *bar = (struct scroll_bar *) client_data;
   XmScrollBarCallbackStruct *cs = (XmScrollBarCallbackStruct *) call_data;
-  double percent;
   int part = -1, whole = 0, portion = 0;
 
   switch (cs->reason)
@@ -8870,7 +8869,6 @@ x_set_toolkit_scroll_bar_thumb (bar, portion, position, whole)
 #ifdef USE_MOTIF
   {
     int size, value;
-    XmScrollBarWidget sb;
 
     /* Slider size.  Must be in the range [1 .. MAX - MIN] where MAX
        is the scroll bar's maximum and MIN is the scroll bar's minimum
@@ -10293,7 +10291,7 @@ XTread_socket (sd, bufp, numchars, expected)
 #ifndef USE_TOOLKIT_SCROLL_BARS
                  struct scroll_bar *bar;
 #endif
-#if defined USE_X_TOOLKIT && defined USE_LUCID
+#if defined USE_LUCID
                  /* Submenus of the Lucid menu bar aren't widgets
                     themselves, so there's no way to dispatch events
                     to them.  Recognize this case separately.  */
@@ -10303,8 +10301,8 @@ XTread_socket (sd, bufp, numchars, expected)
                    if (widget)
                      xlwmenu_redisplay (widget);
                  }
-#endif /* USE_X_TOOLKIT && USE_LUCID */
-                 
+#endif /* USE_LUCID */
+
 #ifdef USE_TOOLKIT_SCROLL_BARS
                  /* Dispatch event to the widget.  */
                  goto OTHER;