]> git.eshelyaron.com Git - emacs.git/commitdiff
(P_): Use PROTOTYPES.
authorDave Love <fx@gnu.org>
Tue, 6 Jun 2000 14:15:49 +0000 (14:15 +0000)
committerDave Love <fx@gnu.org>
Tue, 6 Jun 2000 14:15:49 +0000 (14:15 +0000)
(safe_strdup): Declare arg const.
(lw_modify_all_widgets) <!info>: Return 0.

lwlib/lwlib.c

index 328fdf88c5f89c5a068b04ab00297fd216556795..82de7be3dafc9d530369c445e39c212c9c42cb04 100644 (file)
@@ -75,7 +75,7 @@ char *lwlib_toolkit_type = "motif";
 char *lwlib_toolkit_type = "lucid";
 #endif
 
-#if defined __STDC__
+#if defined __STDC__ || defined PROTOTYPES
 #define P_(x)  x
 #else
 #define P_(x)  ()
@@ -142,7 +142,7 @@ lwlib_bcopy (from, to, length)
 \f/* utility functions for widget_instance and widget_info */
 char *
 safe_strdup (s)
-     char *s;
+     const char *s;
 {
   char *result;
   if (! s) return 0;
@@ -753,7 +753,7 @@ lw_modify_all_widgets (id, val, deep_p)
   int change_p = 0;
 
   if (!info)
-    return;
+    return 0;
 
   for (new_val = val; new_val; new_val = new_val->next)
     {