mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-29 07:58:28 +00:00
* lisp/international/mule-cmds.el (ucs-names): Add special entry for BEL.
Fixes: debbugs:17702
This commit is contained in:
parent
b83798031c
commit
28b8329726
@ -1,3 +1,8 @@
|
||||
2014-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
* international/mule-cmds.el (ucs-names): Add special entry for BEL
|
||||
(bug#17702).
|
||||
|
||||
2014-06-06 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* startup.el (window-setup-hook): Doc fix.
|
||||
|
@ -2945,7 +2945,10 @@ on encoding."
|
||||
(if (setq name (get-char-code-property c 'name))
|
||||
(push (cons name c) names))
|
||||
(setq c (1+ c))))
|
||||
(setq ucs-names names))))
|
||||
;; Special case for "BELL" which is apparently the only char which
|
||||
;; doesn't have a new name and whose old-name is shadowed by a newer
|
||||
;; char with that name.
|
||||
(setq ucs-names `(("BELL (BEL)" . 7) ,@names)))))
|
||||
|
||||
(defun read-char-by-name (prompt)
|
||||
"Read a character by its Unicode name or hex number string.
|
||||
|
Loading…
Reference in New Issue
Block a user