Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
74fcd0b1
Commit
74fcd0b1
authored
Apr 02, 2009
by
Kenichi Handa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(setup-default-fontset): Specify
iso10646-1 font for characters in PUA of BMP.
parent
de0ad2f7
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
1 deletion
+15
-1
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/international/fontset.el
lisp/international/fontset.el
+5
-1
src/ChangeLog
src/ChangeLog
+5
-0
No files found.
lisp/ChangeLog
View file @
74fcd0b1
2009-04-02 Kenichi Handa <handa@m17n.org>
* international/fontset.el (setup-default-fontset): Specify
iso10646-1 font for characters in PUA of BMP.
2009-04-02 Stefan Monnier <monnier@iro.umontreal.ca>
* simple.el (auto-fill-function): Mark it as safe for nil.
...
...
lisp/international/fontset.el
View file @
74fcd0b1
...
...
@@ -578,7 +578,11 @@
(
set-fontset-font
"fontset-default"
'
(
#x20000
.
#x2FFFF
)
'
(
nil
.
"unicode-sip"
))
(
set-fontset-font
"fontset-default"
'
(
#xE000
.
#xF8FF
)
nil
))
(
set-fontset-font
"fontset-default"
'
(
#xE000
.
#xF8FF
)
'
(
nil
.
"iso10646-1"
))
;; Don't try the fallback fonts even if no suitable font was found
;; by the above font-spec.
(
set-fontset-font
"fontset-default"
'
(
#xE000
.
#xF8FF
)
nil
nil
'append
))
(
defun
create-default-fontset
()
"Create the default fontset.
...
...
src/ChangeLog
View file @
74fcd0b1
2009-04-02 Kenichi Handa <handa@m17n.org>
* fontset.c (fontset_font): Record no-font when a fontset
explicitly tells not to try another font-specs.
2009-03-30 Pierre Poissinger <pierre.poissinger@gmail.com> (tiny change)
* charset.c (map_charset_for_dump): Add missing UNGCPRO.
...
...
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