* lisp/international/mule-cmds.el (ucs-names): Add special entry for BEL.
Fixes: debbugs:17702
This commit is contained in:
parent
b83798031c
commit
28b8329726
2 changed files with 9 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue