]> git.eshelyaron.com Git - emacs.git/commitdiff
(handle_fontified_prop): Don't GCPRO local var `pos';
authorGerd Moellmann <gerd@gnu.org>
Thu, 8 Jun 2000 20:58:15 +0000 (20:58 +0000)
committerGerd Moellmann <gerd@gnu.org>
Thu, 8 Jun 2000 20:58:15 +0000 (20:58 +0000)
it's an integer.

src/xdisp.c

index d81a5c4c9b218001e4e30509fbd1419dfb26da0c..1e1f5ed65e57026490f70c03daa2df1f8a9a1e16 100644 (file)
@@ -1787,7 +1787,6 @@ handle_fontified_prop (it)
 {
   Lisp_Object prop, pos;
   enum prop_handled handled = HANDLED_NORMALLY;
-  struct gcpro gcpro1;
 
   /* Get the value of the `fontified' property at IT's current buffer
      position.  (The `fontified' property doesn't have a special
@@ -1802,7 +1801,6 @@ handle_fontified_prop (it)
     {
       Lisp_Object args[2];
 
-      GCPRO1 (pos);
       /* Run the hook functions.  */
       args[0] = Qfontification_functions;
       args[1] = pos;
@@ -1813,7 +1811,6 @@ handle_fontified_prop (it)
         fontify the text for which reason ever.  */
       if (!NILP (Fget_char_property (pos, Qfontified, Qnil)))
        handled = HANDLED_RECOMPUTE_PROPS;
-      UNGCPRO;
     }
 
   return handled;