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
6a8b9ce4
Commit
6a8b9ce4
authored
Jan 22, 2004
by
Kenichi Handa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(ccl-encode-windows-1251-font): Rearrange
code point (register r0) only for charset mule-unicode-0100-24ff.
parent
d92f48d3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
5 deletions
+10
-5
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/language/cyrillic.el
lisp/language/cyrillic.el
+5
-5
No files found.
lisp/ChangeLog
View file @
6a8b9ce4
2004-01-22 Kenichi Handa <handa@m17n.org>
* language/cyrillic.el (ccl-encode-windows-1251-font): Rearrange
code point (register r1) only for charset mule-unicode-0100-24ff.
2004-01-21 Markus Rost <rost@mathematik.uni-bielefeld.de>
* mail/rmail.el (rmail-convert-to-babyl-format): Avoid deleting
...
...
lisp/language/cyrillic.el
View file @
6a8b9ce4
...
...
@@ -476,11 +476,11 @@ Support for Russian using koi8-r and the russian-computer input method.")
(
push
elt
ctext-non-standard-encodings-alist
)))
(
define-ccl-program
ccl-encode-windows-1251-font
'
(
0
((
r1
<<=
7
)
(
r1
+=
r2
)
(
translate-character
encode-windows-1251
r0
r1
)
)))
`
(
0
((
if
(
r0
==
,
(
charset-id
'mule-unicode-0100-24ff
)
)
((
r1
<<=
7
)
(
r1
+=
r2
))
)
(
translate-character
encode-windows-1251
r0
r1
)
)))
(
add-to-list
'font-ccl-encoder-alist
'
(
"microsoft-cp1251"
.
ccl-encode-windows-1251-font
))
...
...
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