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
emacs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
emacs
emacs
Commits
757c70af
Commit
757c70af
authored
Mar 03, 2014
by
Eli Zaretskii
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix bug #16930 with broken build --without-x.
src/font.c (Fframe_font_cache): Fix last change.
parent
c19ad068
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
src/ChangeLog
src/ChangeLog
+2
-0
src/font.c
src/font.c
+8
-1
No files found.
src/ChangeLog
View file @
757c70af
2014-03-03 Eli Zaretskii <eliz@gnu.org>
* font.c (Fframe_font_cache): Fix last change. (Bug#16930)
* gmalloc.c (aligned_alloc): Fix adjustment of size of the
allocated buffer due to alignment.
(freehook): If the block to be freed was allocated by
...
...
src/font.c
View file @
757c70af
...
...
@@ -4850,7 +4850,14 @@ DEFUN ("frame-font-cache", Fframe_font_cache, Sframe_font_cache, 0, 1, 0,
If FRAME is omitted or nil, use the selected frame. */)
(Lisp_Object frame)
{
return
FRAME_DISPLAY_INFO
(
decode_live_frame
(
frame
))
->
name_list_element
;
#ifdef HAVE_WINDOW_SYSTEM
struct frame *f = decode_live_frame (frame);
if (FRAME_WINDOW_P (f))
return FRAME_DISPLAY_INFO (f)->name_list_element;
else
#endif
return Qnil;
}
#endif /* FONT_DEBUG */
...
...
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