aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann2000-06-08 20:58:15 +0000
committerGerd Moellmann2000-06-08 20:58:15 +0000
commitb5d56c1f0a369678331d52561dc2b893b6eaa213 (patch)
treee50d0460be9d17d425f610add2f1b5ca043b9ec5 /src
parent0f98c4c21185ffc9136044022bac4dcd8d81d6cb (diff)
downloademacs-b5d56c1f0a369678331d52561dc2b893b6eaa213.tar.gz
emacs-b5d56c1f0a369678331d52561dc2b893b6eaa213.zip
(handle_fontified_prop): Don't GCPRO local var `pos';
it's an integer.
Diffstat (limited to 'src')
-rw-r--r--src/xdisp.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/xdisp.c b/src/xdisp.c
index d81a5c4c9b2..1e1f5ed65e5 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -1787,7 +1787,6 @@ handle_fontified_prop (it)
1787{ 1787{
1788 Lisp_Object prop, pos; 1788 Lisp_Object prop, pos;
1789 enum prop_handled handled = HANDLED_NORMALLY; 1789 enum prop_handled handled = HANDLED_NORMALLY;
1790 struct gcpro gcpro1;
1791 1790
1792 /* Get the value of the `fontified' property at IT's current buffer 1791 /* Get the value of the `fontified' property at IT's current buffer
1793 position. (The `fontified' property doesn't have a special 1792 position. (The `fontified' property doesn't have a special
@@ -1802,7 +1801,6 @@ handle_fontified_prop (it)
1802 { 1801 {
1803 Lisp_Object args[2]; 1802 Lisp_Object args[2];
1804 1803
1805 GCPRO1 (pos);
1806 /* Run the hook functions. */ 1804 /* Run the hook functions. */
1807 args[0] = Qfontification_functions; 1805 args[0] = Qfontification_functions;
1808 args[1] = pos; 1806 args[1] = pos;
@@ -1813,7 +1811,6 @@ handle_fontified_prop (it)
1813 fontify the text for which reason ever. */ 1811 fontify the text for which reason ever. */
1814 if (!NILP (Fget_char_property (pos, Qfontified, Qnil))) 1812 if (!NILP (Fget_char_property (pos, Qfontified, Qnil)))
1815 handled = HANDLED_RECOMPUTE_PROPS; 1813 handled = HANDLED_RECOMPUTE_PROPS;
1816 UNGCPRO;
1817 } 1814 }
1818 1815
1819 return handled; 1816 return handled;