]> git.eshelyaron.com Git - emacs.git/commitdiff
* font.c (num_fonts): Remove the leftover from old
authorDmitry Antipov <dmantipov@yandex.ru>
Fri, 25 Jan 2013 06:31:41 +0000 (10:31 +0400)
committerDmitry Antipov <dmantipov@yandex.ru>
Fri, 25 Jan 2013 06:31:41 +0000 (10:31 +0400)
debugging code.  Adjust comment style here and there.

src/ChangeLog
src/font.c

index 7d9647cbb11b0c0442069f6ea3332668cc9db735..544cb4f39a2b79e41facd5b1cd60f2625dec2fa9 100644 (file)
@@ -1,3 +1,8 @@
+2013-01-25  Dmitry Antipov  <dmantipov@yandex.ru>
+
+       * font.c (num_fonts): Remove the leftover from old
+       debugging code.  Adjust comment style here and there.
+
 2013-01-25  Eli Zaretskii  <eliz@gnu.org>
 
        * w32.c (max_filename_mbslen): New function.
@@ -36,7 +41,7 @@
        (w32_read_socket): Save iconified state to generate DEICONIFY_EVENT
        properly.  Likewise for obscured.
        * xterm.c: Ditto.
-       (handle_one_xevent): Save visible state go generate ICONIFY_EVENT
+       (handle_one_xevent): Save visible state to generate ICONIFY_EVENT
        properly.
        * nsterm.m: Ditto.
        (windowDidDeminiaturize): Generate DEICONIFY_EVENT.
index 18caf751643fb3c55a26cfb50e6c3dced5a67a89..3cffe2558aeb8feb643ca697766e205a9b4a873b 100644 (file)
@@ -717,7 +717,7 @@ font_put_extra (Lisp_Object font, Lisp_Object prop, Lisp_Object val)
 }
 
 \f
-/* Font name parser and unparser */
+/* Font name parser and unparser */
 
 static int parse_matrix (const char *);
 static int font_expand_wildcards (Lisp_Object *, int);
@@ -1746,7 +1746,7 @@ font_parse_family_registry (Lisp_Object family, Lisp_Object registry, Lisp_Objec
 /* This part (through the next ^L) is still experimental and not
    tested much.  We may drastically change codes.  */
 
-/* OTF handler */
+/* OTF handler */
 
 #if 0
 
@@ -2035,7 +2035,7 @@ font_otf_Anchor (OTF_Anchor *anchor)
 #endif /* 0 */
 
 \f
-/* Font sorting */
+/* Font sorting */
 
 static unsigned font_score (Lisp_Object, Lisp_Object *);
 static int font_compare (const void *, const void *);
@@ -2565,7 +2565,6 @@ font_get_cache (FRAME_PTR f, struct font_driver *driver)
   return val;
 }
 
-static int num_fonts;
 
 static void
 font_clear_cache (FRAME_PTR f, Lisp_Object cache, struct font_driver *driver)
@@ -2598,7 +2597,6 @@ font_clear_cache (FRAME_PTR f, Lisp_Object cache, struct font_driver *driver)
                        {
                          eassert (font && driver == font->driver);
                          driver->close (f, font);
-                         num_fonts--;
                        }
                    }
                  if (driver->free_entity)
@@ -2856,7 +2854,6 @@ font_open_entity (FRAME_PTR f, Lisp_Object entity, int pixel_size)
     return Qnil;
   ASET (entity, FONT_OBJLIST_INDEX,
        Fcons (font_object, AREF (entity, FONT_OBJLIST_INDEX)));
-  num_fonts++;
 
   font = XFONT_OBJECT (font_object);
   min_width = (font->min_width ? font->min_width
@@ -2901,7 +2898,6 @@ font_close_object (FRAME_PTR f, Lisp_Object font_object)
   eassert (FRAME_X_DISPLAY_INFO (f)->n_fonts);
   FRAME_X_DISPLAY_INFO (f)->n_fonts--;
 #endif
-  num_fonts--;
 }
 
 
@@ -3578,7 +3574,7 @@ font_filter_properties (Lisp_Object font,
   Lisp_Object it;
   int i;
 
-  /* Set boolean values to Qt or Qnil */
+  /* Set boolean values to Qt or Qnil */
   for (i = 0; boolean_properties[i] != NULL; ++i)
     for (it = alist; ! NILP (it); it = XCDR (it))
       {
@@ -3757,7 +3753,7 @@ font_range (ptrdiff_t pos, ptrdiff_t *limit, struct window *w, struct face *face
 #endif
 
 \f
-/* Lisp API */
+/* Lisp API */
 
 DEFUN ("fontp", Ffontp, Sfontp, 1, 2, 0,
        doc: /* Return t if OBJECT is a font-spec, font-entity, or font-object.