changeset 29515:e89a3b5d7c13

(handle_fontified_prop): Don't GCPRO local var `pos'; it's an integer.
author Gerd Moellmann <gerd@gnu.org>
date Thu, 08 Jun 2000 20:58:15 +0000
parents e31f78844157
children 4e7f28c8e364
files src/xdisp.c
diffstat 1 files changed, 0 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/xdisp.c	Thu Jun 08 20:57:47 2000 +0000
+++ b/src/xdisp.c	Thu Jun 08 20:58:15 2000 +0000
@@ -1787,7 +1787,6 @@
 {
   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 @@
     {
       Lisp_Object args[2];
 
-      GCPRO1 (pos);
       /* Run the hook functions.  */
       args[0] = Qfontification_functions;
       args[1] = pos;
@@ -1813,7 +1811,6 @@
 	 fontify the text for which reason ever.  */
       if (!NILP (Fget_char_property (pos, Qfontified, Qnil)))
 	handled = HANDLED_RECOMPUTE_PROPS;
-      UNGCPRO;
     }
 
   return handled;