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
778686b1
Commit
778686b1
authored
Dec 27, 2007
by
Kenichi Handa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(struct font_driver): Docstring of member `shape' is improved.
parent
ef800aa2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
1 deletion
+12
-1
src/font.h
src/font.h
+12
-1
No files found.
src/font.h
View file @
778686b1
...
@@ -446,7 +446,18 @@ struct font_driver
...
@@ -446,7 +446,18 @@ struct font_driver
int
(
*
end_for_frame
)
P_
((
FRAME_PTR
f
));
int
(
*
end_for_frame
)
P_
((
FRAME_PTR
f
));
/* Optional.
/* Optional.
Shape text in LGSTRING. */
Shape text in LGSTRING. See the docstring of `font-make-gstring'
for the format of LGSTRING. If the (N+1)th element of LGSTRING
is nil, input of shaping is from the 1st to (N)th elements. In
each input glyph, FROM, TO, CHAR, and CODE are already set.
This function updates all fields of the input glyphs. If the
output glyphs (M) are more than the input glyphs (N), (N+1)th
through (M)th elements of LGSTRING are updated possibly by making
a new glyph object and storing it in LGSTRING. If (M) is greater
than the length of LGSTRING, nil should be return. In that case,
this function is called again with the larger LGSTRING. */
Lisp_Object
(
*
shape
)
P_
((
Lisp_Object
lgstring
));
Lisp_Object
(
*
shape
)
P_
((
Lisp_Object
lgstring
));
};
};
...
...
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