# HG changeset patch # User Oleksandr Gavenko # Date 1601754306 -10800 # Node ID 1faf2d1a9cd68efbac75b91e1c9566d57f8a8f1e # Parent f73d74be13164caeddcdece2aa9883f5d1b88c2d Fixed typo in a condition. diff -r f73d74be1316 -r 1faf2d1a9cd6 .emacs-my --- a/.emacs-my Wed Sep 30 14:11:24 2020 +0300 +++ b/.emacs-my Sat Oct 03 22:45:06 2020 +0300 @@ -743,9 +743,9 @@ (defun my--get-char (name) "Get character by Unicode `name'." (cond - ((>= 26 emacs-major-version) + ((<= 26 emacs-major-version) (gethash name (ucs-names))) - ((>= 23 emacs-major-version) + ((<= 23 emacs-major-version) (cdr (assoc-string name (ucs-names)))) (t (error "Emacs version is too old and lacks Unicode support..."))))