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
841081e1
Commit
841081e1
authored
Mar 06, 2011
by
Paul Eggert
Browse files
* xdisp.c (produce_glyphless_glyph): Make a pointer "const"
since it might point to immutable storage.
parent
7b781e9f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
src/ChangeLog
src/ChangeLog
+2
-0
src/xdisp.c
src/xdisp.c
+2
-1
No files found.
src/ChangeLog
View file @
841081e1
...
...
@@ -9,6 +9,8 @@
(mouse_face_from_buffer_pos, note_mouse_highlight, expose_frame):
Rename or move local decls.
* xdisp.c (BUILD_GLYPHLESS_GLYPH_STRING): Omit unused local var.
(produce_glyphless_glyph): Make a pointer "const"
since it might point to immutable storage.
2011-03-06 Michael Shields <shields@msrl.com> (tiny change)
src/xdisp.c
View file @
841081e1
...
...
@@ -22267,7 +22267,8 @@ produce_glyphless_glyph (struct it *it, int for_no_font, Lisp_Object acronym)
}
else
{
char buf[7], *str;
char buf[7];
const char *str;
unsigned int code[6];
int upper_len;
int ascent, descent;
...
...
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