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
acbfe54c
Commit
acbfe54c
authored
Mar 06, 2011
by
Paul Eggert
Browse files
* xdisp.c (SKIP_GLYPHS): Removed unused macro.
parent
d8a3e89e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
12 deletions
+1
-12
src/ChangeLog
src/ChangeLog
+1
-0
src/xdisp.c
src/xdisp.c
+0
-12
No files found.
src/ChangeLog
View file @
acbfe54c
...
...
@@ -12,6 +12,7 @@
(produce_glyphless_glyph): Make a pointer "const"
since it might point to immutable storage.
(update_window_cursor): Now static, since it's not used elsewhere.
(SKIP_GLYPHS): Removed unused macro.
2011-03-06 Michael Shields <shields@msrl.com> (tiny change)
src/xdisp.c
View file @
acbfe54c
...
...
@@ -12382,18 +12382,6 @@ redisplay_window_1 (Lisp_Object window)
}
/* Increment GLYPH until it reaches END or CONDITION fails while
adding (GLYPH)->pixel_width to X. */
#define SKIP_GLYPHS(glyph, end, x, condition) \
do \
{ \
(x) += (glyph)->pixel_width; \
++(glyph); \
} \
while ((glyph) < (end) && (condition))
/* Set cursor position of W. PT is assumed to be displayed in ROW.
DELTA and DELTA_BYTES are the numbers of characters and bytes by
which positions recorded in ROW differ from current buffer
...
...
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