Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
2201c41c
Commit
2201c41c
authored
Oct 01, 2006
by
Stefan Monnier
Browse files
(handle_fontified_prop): Don't fontify at EOB.
parent
7f7f218c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
src/ChangeLog
src/ChangeLog
+4
-0
src/xdisp.c
src/xdisp.c
+3
-1
No files found.
src/ChangeLog
View file @
2201c41c
2006-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
* xdisp.c (handle_fontified_prop): Don't fontify at EOB.
2006-09-30 Eli Zaretskii <eliz@gnu.org>
* config.in Regenerated.
...
...
src/xdisp.c
View file @
2201c41c
...
...
@@ -3246,7 +3246,9 @@ handle_fontified_prop (it)
&& !NILP (Vrun_hooks)
&& (pos = make_number (IT_CHARPOS (*it)),
prop = Fget_char_property (pos, Qfontified, Qnil),
NILP (prop)))
/* Ignore the special cased nil value always present at EOB since
no amount of fontifying will be able to change it. */
NILP (prop) && IT_CHARPOS (*it) < Z))
{
int count = SPECPDL_INDEX ();
Lisp_Object val;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment