summaryrefslogtreecommitdiff
path: root/lisp/international
diff options
context:
space:
mode:
authorRobert Pluim <rpluim@gmail.com>2023-02-13 18:40:55 +0100
committerRobert Pluim <rpluim@gmail.com>2023-02-13 18:40:55 +0100
commita124cfd4418c054736fc1c56834191258507caf2 (patch)
treebf949e430eb54205a25d680d4d954e36f89bac81 /lisp/international
parent8aef401b4f66a64ddfa9390590fb2cae1f96d522 (diff)
downloademacs-a124cfd4418c054736fc1c56834191258507caf2.tar.gz
; Fix previous mule-conf change
Diffstat (limited to 'lisp/international')
-rw-r--r--lisp/international/mule-conf.el11
1 files changed, 6 insertions, 5 deletions
diff --git a/lisp/international/mule-conf.el b/lisp/international/mule-conf.el
index 30376b5bc19..a83eeb08525 100644
--- a/lisp/international/mule-conf.el
+++ b/lisp/international/mule-conf.el
@@ -1737,11 +1737,12 @@ included; callers should bind `case-fold-search' to t."
;; (describe-char-fold-equivalences ?:)
;; The last entry is taken from history.
(defcustom password-colon-equivalents
- '(?\N{COLON}
- ?\N{FULLWIDTH COLON}
- ?\N{SMALL COLON}
- ?\N{PRESENTATION FORM FOR VERTICAL COLON}
- ?\N{KHMER SIGN CAMNUC PII KUUH})
+ '(?\u003a ; ?\N{COLON}
+ ?\uff1a ; ?\N{FULLWIDTH COLON}
+ ?\ufe55 ; ?\N{SMALL COLON}
+ ?\ufe13 ; ?\N{PRESENTATION FORM FOR VERTICAL COLON}
+ ?\u17d6 ; ?\N{KHMER SIGN CAMNUC PII KUUH})
+ )
"List of characters equivalent to trailing colon in \"password\" prompts."
:type '(repeat character)
:version "30.1"