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
b581dd8c
Commit
b581dd8c
authored
Sep 13, 2002
by
Dave Love
Browse files
(find-coding-systems-for-charsets): Check charset type before
getting :charset-list.
parent
12bb15ad
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
2 deletions
+13
-2
lisp/ChangeLog
lisp/ChangeLog
+10
-1
lisp/international/mule-cmds.el
lisp/international/mule-cmds.el
+3
-1
No files found.
lisp/ChangeLog
View file @
b581dd8c
2002-09-14 Dave Love <fx@gnu.org>
* international/mule-cmds.el (charset): Move.
(language-info-custom-alist): Move. Alter :set.
(find-coding-systems-for-charsets): Check charset type before
getting :charset-list.
* language/ind-util.el (iscii-to-ucs-region): Fix typo.
2002-09-12 Kenichi Handa <handa@etl.go.jp>
* international/mule-conf.el (emacs-mule, iso-2022-7bit)
(iso-2022-7bit-ss2, iso-2022-7bit-lock, iso-2022-8bit-ss2)
(compound-text, ctext-no-compositions): Cancel provious change.
2002-09-09 Dave Love <
d.love@dl.ac.uk
>
2002-09-09 Dave Love <
fx@gnu.org
>
* wid-edit.el (widget-string-complete): New.
(widget-coding-system-prompt-value-history): Deleted.
...
...
lisp/international/mule-cmds.el
View file @
b581dd8c
...
...
@@ -457,7 +457,9 @@ Emacs, but is unlikely to be what you really want now."
(
t
(
let
(
codings
)
(
dolist
(
cs
(
coding-system-list
t
))
(
let
((
cs-charsets
(
coding-system-get
cs
:charset-list
))
(
let
((
cs-charsets
(
and
(
eq
'charset
(
coding-system-get
cs
:coding-type
))
(
coding-system-get
cs
:charset-list
)))
(
charsets
charsets
))
(
if
(
coding-system-get
cs
:ascii-compatible-p
)
(
add-to-list
'cs-charsets
'ascii
))
...
...
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