summaryrefslogtreecommitdiff
path: root/.emacs
diff options
context:
space:
mode:
Diffstat (limited to '.emacs')
-rw-r--r--.emacs16
1 files changed, 8 insertions, 8 deletions
diff --git a/.emacs b/.emacs
index c43e8a3..42154fd 100644
--- a/.emacs
+++ b/.emacs
@@ -63,18 +63,18 @@
(mapc (lambda (item)
(quail-defrule (car item) (cdr item) "my/input-method"))
- '(
+ (list
;; Punctuation
- ("..." ?…)
+ '("..." ?…)
;; Math symbols
- ("~~" ?≈) ("~=" ?≊) ("^=" ?≙)
- ("-->" ?→) ("-/>" ?↛) ("==>" ?⇒) ("=/>" ?⇏)
- ("<--" ?←) ("</-" ?↚) ("<==" ?⇐) ("</=" ?⇍)
- ("<->" ?↔) ("<=>" ?⇔)
+ '("~~" ?≈) '("~=" ?≊) '("^=" ?≙)
+ '("-->" ?→) '("-/>" ?↛) '("==>" ?⇒) '("=/>" ?⇏)
+ '("<--" ?←) '("</-" ?↚) '("<==" ?⇐) '("</=" ?⇍)
+ '("<->" ?↔) '("<=>" ?⇔)
;; Emojis
- ("\\o/" ?🙌) ("\\m/" ?🤘)
+ '("\\o/" ?🙌) '("\\m/" ?🤘)
;; Pictograms
- ("/!\\" ?⚠)))
+ '("/!\\" ?⚠)))
;; What's life without a little risk?
(setq disabled-command-function nil)