aboutsummaryrefslogtreecommitdiffstats
path: root/src/xdisp.c
diff options
context:
space:
mode:
authorGerd Moellmann <[email protected]>2000-06-08 20:58:15 +0000
committerGerd Moellmann <[email protected]>2000-06-08 20:58:15 +0000
commitb5d56c1f0a369678331d52561dc2b893b6eaa213 (patch)
treee50d0460be9d17d425f610add2f1b5ca043b9ec5 /src/xdisp.c
parent0f98c4c21185ffc9136044022bac4dcd8d81d6cb (diff)
(handle_fontified_prop): Don't GCPRO local var `pos';
it's an integer.
Diffstat (limited to 'src/xdisp.c')
-rw-r--r--src/xdisp.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/xdisp.c b/src/xdisp.c
index d81a5c4c9b..1e1f5ed65e 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -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;