]> git.eshelyaron.com Git - emacs.git/commitdiff
; Fix previous mule-conf change
authorRobert Pluim <rpluim@gmail.com>
Mon, 13 Feb 2023 17:40:55 +0000 (18:40 +0100)
committerRobert Pluim <rpluim@gmail.com>
Mon, 13 Feb 2023 17:40:55 +0000 (18:40 +0100)
lisp/international/mule-conf.el

index 30376b5bc194fbb4c5c57225f00b92a1d2263c69..a83eeb085255c81d4c4f0e730dfd6b625a6307a1 100644 (file)
@@ -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"