From 8be6f5ae7d149d1de5c094466e55be1c574be765 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Wed, 26 Mar 2008 02:40:58 +0000 Subject: [PATCH] Don't use single-char mapping from ~ to NBSP. --- leim/ChangeLog | 4 ++++ leim/quail/latin-ltx.el | 47 ++++++++++++++++++++++------------------- 2 files changed, 29 insertions(+), 22 deletions(-) diff --git a/leim/ChangeLog b/leim/ChangeLog index dbac852c79e..dd5c7f26de2 100644 --- a/leim/ChangeLog +++ b/leim/ChangeLog @@ -1,3 +1,7 @@ +2008-03-26 Stefan Monnier + + * quail/latin-ltx.el: Don't use single-char mapping from ~ to NBSP. + 2008-02-21 Kenichi Handa * quail/indian.el: Don't require devan-util. diff --git a/leim/quail/latin-ltx.el b/leim/quail/latin-ltx.el index c3e3eab8f11..848428c0dc9 100644 --- a/leim/quail/latin-ltx.el +++ b/leim/quail/latin-ltx.el @@ -903,7 +903,10 @@ system, including many technical ones. Examples: ("\\Bbb{Z}" ?ℤ) ("--" ?–) ("---" ?—) - ("~" ? ) ; nbsp + ;; We used to use ~ for NBSP but that's inconvenient and may even look like + ;; a bug where the user finds his ~ key doesn't insert a ~ any more. + ("\\ " ? ) + ("\\\\" ?\\) ("\\mu" ?μ) ("\\rho" ?ρ) ("\\mathscr{I}" ?ℐ) ; moment of inertia @@ -912,24 +915,24 @@ system, including many technical ones. Examples: ("\\Frowny" ?☹) ("\\Letter" ?✉) ("\\permil" ?‰) -;;; Probably not useful enough: -;;; ("\\Telefon" ?☎) ; there are other possibilities -;;; ("\\Radioactivity" ?☢) -;;; ("\Biohazard" ?☣) -;;; ("\\Male" ?♂) -;;; ("\\Female" ?♀) -;;; ("\\Lightning" ?☇) -;;; ("\\Mercury" ?☿) -;;; ("\\Earth" ?♁) -;;; ("\\Jupiter" ?♃) -;;; ("\\Saturn" ?♄) -;;; ("\\Uranus" ?♅) -;;; ("\\Neptune" ?♆) -;;; ("\\Pluto" ?♇) -;;; ("\\Sun" ?☉) -;;; ("\\Writinghand" ?✍) -;;; ("\\\\Yinyang" ?☯) -;;; ("\\Heart" ?♡) + ;; Probably not useful enough: + ;; ("\\Telefon" ?☎) ; there are other possibilities + ;; ("\\Radioactivity" ?☢) + ;; ("\Biohazard" ?☣) + ;; ("\\Male" ?♂) + ;; ("\\Female" ?♀) + ;; ("\\Lightning" ?☇) + ;; ("\\Mercury" ?☿) + ;; ("\\Earth" ?♁) + ;; ("\\Jupiter" ?♃) + ;; ("\\Saturn" ?♄) + ;; ("\\Uranus" ?♅) + ;; ("\\Neptune" ?♆) + ;; ("\\Pluto" ?♇) + ;; ("\\Sun" ?☉) + ;; ("\\Writinghand" ?✍) + ;; ("\\Yinyang" ?☯) + ;; ("\\Heart" ?♡) ("\\registered" ?®) ("\\currency" ?¤) ("\\dh" ?ð) @@ -947,11 +950,11 @@ system, including many technical ones. Examples: ("\\rdq" ?\”) ("\\minus" ?−) ("\\defs" ?≙) ; per fuzz/zed -;; ("\\sqrt[3]" ?∛) + ;; ("\\sqrt[3]" ?∛) ("\\llbracket" ?\〚) ; stmaryrd ("\\rrbracket" ?\〛) -;; ("\\lbag" ?\〚) ; fuzz -;; ("\\rbag" ?\〛) + ;; ("\\lbag" ?\〚) ; fuzz + ;; ("\\rbag" ?\〛) ("\\ldata" ?\《) ; fuzz/zed ("\\rdata" ?\》) ;; From Karl Eichwalder. -- 2.39.5