diff src/gui_gtk_f.h @ 18753:6e3dc2d630c2 v8.1.2366

patch 8.1.2366: using old C style comments Commit: https://github.com/vim/vim/commit/9bf703d46a79fbffeb829246ea5ce385bddc4166 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Nov 30 19:44:38 2019 +0100 patch 8.1.2366: using old C style comments Problem: Using old C style comments. Solution: Use // comments where appropriate.
author Bram Moolenaar <Bram@vim.org>
date Sat, 30 Nov 2019 19:45:03 +0100
parents cd8dbed175a1
children 8623ab39b421
line wrap: on
line diff
--- a/src/gui_gtk_f.h
+++ b/src/gui_gtk_f.h
@@ -70,10 +70,9 @@ void gtk_form_move_resize(GtkForm * form
 	gint x, gint y,
 	gint w, gint h);
 
-/* These disable and enable moving and repainting respectively.  If you
- * want to update the layout's offsets but do not want it to repaint
- * itself, you should use these functions.
- */
+// These disable and enable moving and repainting respectively.  If you
+// want to update the layout's offsets but do not want it to repaint
+// itself, you should use these functions.
 
 void gtk_form_freeze(GtkForm *form);
 void gtk_form_thaw(GtkForm *form);
@@ -82,4 +81,4 @@ void gtk_form_thaw(GtkForm *form);
 #ifdef __cplusplus
 }
 #endif
-#endif	/* __GTK_FORM_H__ */
+#endif	// __GTK_FORM_H__