]> git.eshelyaron.com Git - emacs.git/commitdiff
Prefer comments /* like this */ in C code
authorPaul Eggert <eggert@cs.ucla.edu>
Sun, 6 Nov 2016 03:41:37 +0000 (20:41 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Sun, 6 Nov 2016 03:42:10 +0000 (20:42 -0700)
Emacs C code assumes C99 features, but has long used traditional
comments /* like this */ instead of C99-style comments // like this.
Stick with traditional comments for now, partly for style, partly as
it may be safer with compilers that are not fully in C99 mode.

src/emacs-module.c
src/gfilenotify.c
src/gtkutil.c
src/image.c
src/kqueue.c
src/w32fns.c
src/xdisp.c
src/xselect.c
src/xsmfns.c
src/xterm.c

index eca5af739b92846c6be69e7d83435159e8f8035b..a28fe57b12dc2f9ab63529064c81a0135591e2d4 100644 (file)
@@ -142,8 +142,8 @@ static emacs_value const module_nil = 0;
    or a pointer to handle non-local exits.  The function must have an
    ENV parameter.  The function will return the specified value if a
    signal or throw is caught.  */
-// TODO: Have Fsignal check for CATCHER_ALL so we only have to install
-// one handler.
+/* TODO: Have Fsignal check for CATCHER_ALL so we only have to install
+   one handler.  */
 #define MODULE_HANDLE_NONLOCAL_EXIT(retval)                     \
   MODULE_SETJMP (CONDITION_CASE, module_handle_signal, retval); \
   MODULE_SETJMP (CATCHER_ALL, module_handle_throw, retval)
@@ -163,7 +163,7 @@ static emacs_value const module_nil = 0;
    code after the macro may longjmp back into the macro, which means
    its local variable C must stay live in later code.  */
 
-// TODO: Make backtraces work if this macros is used.
+/* TODO: Make backtraces work if this macros is used.  */
 
 #define MODULE_SETJMP_1(handlertype, handlerfunc, retval, c, dummy)    \
   if (module_non_local_exit_check (env) != emacs_funcall_exit_return)  \
index 3b1f2fc516ac3b36feaae01783c84cbf1d57b25c..30d0753f7e76f66c0a9ff0373398adaffd311d5e 100644 (file)
@@ -105,7 +105,7 @@ dir_monitor_callback (GFileMonitor *monitor,
 
          /* Store it into the input event queue.  */
          kbd_buffer_store_event (&event);
-         // XD_DEBUG_MESSAGE ("%s", XD_OBJECT_TO_STRING (event.arg));
+         /* XD_DEBUG_MESSAGE ("%s", XD_OBJECT_TO_STRING (event.arg));  */
        }
 
       /* Cancel monitor if file or directory is deleted.  */
index e791e6ac317152804cdfa48c6db36e20ae0f4adc..0f256c563dc1bba7ba8f912de936f4988f4fb82a 100644 (file)
@@ -185,7 +185,7 @@ xg_display_open (char *display_name, Display **dpy)
 {
   GdkDisplay *gdpy;
 
-  unrequest_sigio ();  // See comment in x_display_ok, xterm.c.
+  unrequest_sigio ();  /* See comment in x_display_ok, xterm.c.  */
   gdpy = gdk_display_open (display_name);
   request_sigio ();
   if (!gdpy_def && gdpy)
index 78539d91d2bd392530d90d8362549ab780f85158..6a62235673a9b8778c76da58506d02f374d96e56 100644 (file)
@@ -3712,7 +3712,7 @@ xpm_load (struct frame *f, struct image *img)
     }
 
 #ifdef USE_CAIRO
-  // Load very specific Xpm:s.
+  /* Load very specific Xpm:s.  */
   if (rc == XpmSuccess
       && img->ximg->format == ZPixmap
       && img->ximg->bits_per_pixel == 32
@@ -3736,7 +3736,7 @@ xpm_load (struct frame *f, struct image *img)
               int maskidx = mid ? i * img->mask_img->bytes_per_line + k/8 : 0;
               int mask = mid ? mid[maskidx] & (1 << (k % 8)) : 1;
 
-              if (mask) od[idx] = id[idx] + 0xff000000; // ff => full alpha
+              if (mask) od[idx] = id[idx] + 0xff000000; /* ff => full alpha */
               else od[idx] = bgcolor;
             }
         }
index c848b7ff1af963a53e5474c73179e7fdf4b05495..49ca0c95e27f77115fa26068a89010a40d1e954d 100644 (file)
@@ -264,8 +264,6 @@ kqueue_compare_dir_list (Lisp_Object watch_object)
     report_file_error ("New list not empty", new_dl);
   if (! NILP (pending_dl))
     report_file_error ("Pending events list not empty", pending_dl);
-  //  if (! NILP (deleted_dl))
-  //    report_file_error ("Deleted events list not empty", deleted_dl);
 
   /* Replace old directory listing with the new one.  */
   XSETCDR (Fnthcdr (make_number (3), watch_object),
index c57b5a188b238832858815a76a548db49c8dc8cf..27c0d65fbd073b6f101d1ba96f4b877f38034b39 100644 (file)
@@ -6934,7 +6934,7 @@ value of DIR as in previous invocations; this is standard Windows behavior.  */)
   } new_file_details_w;
 
 #ifdef NTGUI_UNICODE
-  wchar_t filename_buf_w[32*1024 + 1]; // NT kernel maximum
+  wchar_t filename_buf_w[32*1024 + 1]; /* NT kernel maximum */
   OPENFILENAMEW * file_details_w = &new_file_details_w.details;
   const int use_unicode = 1;
 #else /* not NTGUI_UNICODE */
index a13830c811e7a0e1e8bf9fc93d947d986b1c9d45..f575b27fec5f59e2cc200e06be041fe3d43f1af8 100644 (file)
@@ -24461,7 +24461,7 @@ calc_pixel_width_or_height (double *res, struct it *it, Lisp_Object prop,
            }
          if (FRAME_WINDOW_P (it->f) && valid_xwidget_spec_p (prop))
            {
-              // TODO: Don't return dummy size.
+              /* TODO: Don't return dummy size.  */
               return OK_PIXELS (100);
             }
 #endif
index 123e46374a28762a11796735070db22851748514..ff6dc3287cfaca0efce7a5119d7aa311c9ece01a 100644 (file)
@@ -693,7 +693,7 @@ x_reply_selection_request (struct selection_input_event *event,
                             : format_bytes);
            XFlush (display);
            had_errors_p = x_had_errors_p (display);
-            // See comment above about property_change_reply.
+            /* See comment above about property_change_reply.  */
             set_property_change_object (cs->wait_object);
            unblock_input ();
 
@@ -1393,7 +1393,7 @@ receive_incremental_selection (struct x_display_info *dpyinfo,
   wait_object = expect_property_change (display, window, property,
                                        PropertyNewValue);
   XFlush (display);
-  // See comment in x_reply_selection_request about property_change_reply.
+  /* See comment in x_reply_selection_request about property_change_reply.  */
   set_property_change_object (wait_object);
   unblock_input ();
 
@@ -1433,7 +1433,8 @@ receive_incremental_selection (struct x_display_info *dpyinfo,
       XDeleteProperty (display, window, property);
       wait_object = expect_property_change (display, window, property,
                                            PropertyNewValue);
-      // See comment in x_reply_selection_request about property_change_reply.
+      /* See comment in x_reply_selection_request about
+        property_change_reply.  */
       set_property_change_object (wait_object);
       XFlush (display);
       unblock_input ();
index 42e23401c7dae794c534e79ad5b5fa118401f14c..d54a94df877d2b723ab28d1383af9c57a47b2f57 100644 (file)
@@ -170,7 +170,7 @@ smc_save_yourself_CB (SmcConn smcConn,
   char *smid_opt, *chdir_opt = NULL;
   Lisp_Object user_login_name = Fuser_login_name (Qnil);
 
-  // Must have these.
+  /* Must have these.  */
   if (! STRINGP (Vinvocation_name) || ! STRINGP (user_login_name))
     return;
 
index c64c17463cf001039609c691759c45a5c74fb06b..213a527d55d13b05e7d52615e9db49bc55b222cf 100644 (file)
@@ -11950,7 +11950,7 @@ x_term_init (Lisp_Object display_name, char *xrm_option, char *resource_name)
 
 #else /* not USE_X_TOOLKIT */
   XSetLocaleModifiers ("");
-  unrequest_sigio ();  // See comment in x_display_ok.
+  unrequest_sigio ();  /* See comment in x_display_ok.  */
   dpy = XOpenDisplay (SSDATA (display_name));
   request_sigio ();
 #endif /* not USE_X_TOOLKIT */