aboutsummaryrefslogtreecommitdiffstats
path: root/leim
diff options
context:
space:
mode:
authorStefan Monnier <[email protected]>2012-12-04 16:17:30 -0500
committerStefan Monnier <[email protected]>2012-12-04 16:17:30 -0500
commit115574213892efc2f9872db263b854a18cc5c8ae (patch)
tree373dae93bc25394b5bb31e33d1c4bf395581631e /leim
parentb85aec936c85449faeaca36f52994487633e2e48 (diff)
* leim/quail/latin-ltx.el: Avoid deprecated chars for \langle and \rangle.
Remove \rightparengtr and \leftparengtr for lack of consensus. Suggested by Mattias Engdegård <[email protected]>. Fixes: debbugs:12948
Diffstat (limited to 'leim')
-rw-r--r--leim/ChangeLog6
-rw-r--r--leim/quail/latin-ltx.el8
2 files changed, 10 insertions, 4 deletions
diff --git a/leim/ChangeLog b/leim/ChangeLog
index 6a67c99b5c..74fd88ccd9 100644
--- a/leim/ChangeLog
+++ b/leim/ChangeLog
@@ -1,3 +1,9 @@
+2012-12-04 Stefan Monnier <[email protected]>
+
+ * quail/latin-ltx.el: Avoid deprecated chars for \langle and \rangle.
+ Remove \rightparengtr and \leftparengtr for lack of consensus.
+ Suggested by Mattias Engdegård <[email protected]> (bug#12948).
+
2012-09-05 Eli Zaretskii <[email protected]>
* quail/hebrew.el ("yiddish-royal"): Fix several bogus entries.
diff --git a/leim/quail/latin-ltx.el b/leim/quail/latin-ltx.el
index 9f4c966489..4609075a57 100644
--- a/leim/quail/latin-ltx.el
+++ b/leim/quail/latin-ltx.el
@@ -463,7 +463,7 @@ system, including many technical ones. Examples:
("\\infty" ?∞)
("\\int" ?∫)
("\\intercal" ?⊺)
- ("\\langle" ?〈)
+ ("\\langle" ?⟨) ;; Was ?〈, see bug#12948.
("\\lbrace" ?{)
("\\lbrack" ?\[)
("\\lceil" ?⌈)
@@ -475,7 +475,7 @@ system, including many technical ones. Examples:
("\\leftharpoondown" ?↽)
("\\leftharpoonup" ?↼)
("\\leftleftarrows" ?⇇)
- ("\\leftparengtr" ?〈)
+ ;; ("\\leftparengtr" ?〈), see bug#12948.
("\\leftrightarrow" ?↔)
("\\leftrightarrows" ?⇆)
("\\leftrightharpoons" ?⇋)
@@ -593,7 +593,7 @@ system, including many technical ones. Examples:
("\\propto" ?∝)
("\\qed" ?∎)
("\\quad" ? )
- ("\\rangle" ?〉)
+ ("\\rangle" ?⟩) ;; Was ?〉, see bug#12948.
("\\rbrace" ?})
("\\rbrack" ?\])
("\\rceil" ?⌉)
@@ -604,7 +604,7 @@ system, including many technical ones. Examples:
("\\rightharpoonup" ?⇀)
("\\rightleftarrows" ?⇄)
("\\rightleftharpoons" ?⇌)
- ("\\rightparengtr" ?〉)
+ ;; ("\\rightparengtr" ?⦔) ;; Was ?〉, see bug#12948.
("\\rightrightarrows" ?⇉)
("\\rightthreetimes" ?⋌)
("\\risingdotseq" ?≓)